Lichen

tests/read_localised.py

1036:e8ff2a117367
5 months ago Paul Boddie Fixed accessor temporary storage reservation for lambdas and eliminated redundant temporary storage reservation in attribute accesses.
     1 from sys import lstdin     2      3 print lstdin                        # <libc.io.sysstream instance>     4 print lstdin.encoding               # ISO-8859-15     5 print "Reading 10 bytes..."     6 s = lstdin.read(10)     7 print s     8      9 print "Reading to end of file..."    10 s = lstdin.read()    11 print s