Lichen

tests/read_stream.py

1036:e8ff2a117367
5 months ago Paul Boddie Fixed accessor temporary storage reservation for lambdas and eliminated redundant temporary storage reservation in attribute accesses.
     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