tests: Add testcase for read by length past EOF.

Currently broken for unicode input streams.
This commit is contained in:
Paul Sokolovsky 2014-07-22 00:11:37 +03:00
parent 951ed9d02f
commit 512465bc66
1 changed files with 3 additions and 0 deletions

View File

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