Skip to content
Snippets Groups Projects
Commit 3dabaae4 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

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

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