tests/io/bytesio_ext: Test read() after seek() past end of BytesIO object.

pull/2913/merge
Tom Collins 2017-05-12 13:28:07 -07:00 zatwierdzone przez Paul Sokolovsky
rodzic 53461deb04
commit 162a0f942b
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -4,6 +4,10 @@ try:
except ImportError:
import io
a = io.BytesIO(b"foobar")
a.seek(10)
print(a.read(10))
a = io.BytesIO()
print(a.seek(8))
a.write(b"123")