We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d22a04d commit 3dabaaeCopy full SHA for 3dabaae
1 file changed
tests/io/bytesio_ext.py
@@ -17,3 +17,8 @@
17
18
a.flush()
19
print(a.getvalue())
20
+
21
+a.seek(0)
22
+arr = bytearray(10)
23
+print(a.readinto(arr))
24
+print(arr)
0 commit comments