Lichen

Annotated tests/read_stream.py

714:c2106f746c88
2017-03-12 Paul Boddie Merged changes from the default branch. return-value-definition
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