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

pull/1077/merge
Paul Sokolovsky 2015-01-23 18:18:11 +02:00
rodzic 425f952a1e
commit 1f04336b23
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

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