Lichen

tests/read_localised.py

579:d3811f95c60e
2017-02-13 Paul Boddie Moved minimum parameter information to parameter tables, adding maximum parameter information (also fixing tests in the __invoke function), and thus making parameter tables distinct according to minimum parameters and parameter member details. This changes the __attr size to a single word and thus reduces the program data volume even further. method-wrapper-for-context
     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