Lichen

Annotated tests/read_stream.py

561:ddfd3abdd4da
2017-02-09 Paul Boddie Made class- and module-level temporary names function locals in output programs.
paul@343 1
from sys import stdin
paul@343 2
paul@347 3
print "Reading 10 bytes..."
paul@343 4
s = stdin.read(10)
paul@343 5
print s
paul@343 6
paul@347 7
print "Reading to end of file..."
paul@343 8
s = stdin.read()
paul@343 9
print s