Browse Source

tests: Add testcase for read by length past EOF.

Currently broken for unicode input streams.
pull/766/head
Paul Sokolovsky 10 years ago
parent
commit
512465bc66
  1. 3
      tests/io/file_long_read.py

3
tests/io/file_long_read.py

@ -0,0 +1,3 @@
f = open("io/data/file1")
b = f.read(100)
print(len(b))
Loading…
Cancel
Save