Commit 3dabaae4 authored by Paul Sokolovsky's avatar Paul Sokolovsky

tests/io/bytesio_ext: Add test for readinto().

parent d22a04d9
......@@ -17,3 +17,8 @@ print(a.getvalue())
a.flush()
print(a.getvalue())
a.seek(0)
arr = bytearray(10)
print(a.readinto(arr))
print(arr)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment