Lichen

Annotated tests/read_localised.py

792:d70932955645
2017-03-31 Paul Boddie Fixed non-recognition of deferred references in non-module, non-function scopes.
paul@424 1
from sys import lstdin
paul@424 2
paul@532 3
print lstdin                        # <libc.io.sysstream instance>
paul@532 4
print lstdin.encoding               # ISO-8859-15
paul@424 5
print "Reading 10 bytes..."
paul@424 6
s = lstdin.read(10)
paul@424 7
print s
paul@424 8
paul@424 9
print "Reading to end of file..."
paul@424 10
s = lstdin.read()
paul@424 11
print s