Lichen

tests/read_stream.py

584:dad54a3a60f9
2017-02-13 Paul Boddie Merged changes from the attr-strvalue-without-size branch. method-wrapper-for-context
     1 from sys import stdin     2      3 print "Reading 10 bytes..."     4 s = stdin.read(10)     5 print s     6      7 print "Reading to end of file..."     8 s = stdin.read()     9 print s