Lichen

tests/read.py

633:1b6f40b2928e
2017-02-27 Paul Boddie Fixed the reset flag by propagating the reset condition to the translator, forcing all source files to be translated again.
     1 from posix import read     2      3 try:     4     s = read(3, 10)     5 except IOError, exc:     6     print "read(3, 10): input/output error condition", exc.value     7      8 s = read(0, 10)     9 print s