Lichen

Annotated tests/read_localised.py

813:a80de062b595
2017-04-11 Paul Boddie Expanded the download documentation and added a changelog page.
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