Lichen

Annotated tests/read_stream.py

595:60c18e54c8db
2017-02-18 Paul Boddie Introduced a context test that sets a local context for static attributes. 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