tests: Add extra test for reading multiple of internal chunk size.

This commit is contained in:
Paul Sokolovsky 2015-01-23 18:18:11 +02:00
parent 425f952a1e
commit 1f04336b23
1 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1,4 @@
f = open("io/data/bigfile2", "rb")
b = f.read(512)
print(len(b))
print(b)