Lichen

Annotated tests/read_stream.py

580:e703b981b9b1
2017-02-13 Paul Boddie Eliminated redundant struct usage. method-wrapper-for-context
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