tests: Add testcase for read by length past EOF.
Currently broken for unicode input streams.
This commit is contained in:
parent
951ed9d02f
commit
512465bc66
|
@ -0,0 +1,3 @@
|
|||
f = open("io/data/file1")
|
||||
b = f.read(100)
|
||||
print(len(b))
|
Loading…
Reference in New Issue