circuitpython/tests/io/file_readinto.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
276 B
Python
Raw Normal View History

b = bytearray(30)
f = open("io/data/file1", "rb")
print(f.readinto(b))
print(b)
f = open("io/data/file2", "rb")
print(f.readinto(b))
print(b)
2015-12-23 17:37:02 -05:00
# readinto() on writable file
2021-03-15 09:57:36 -04:00
f = open("io/data/file1", "ab")
2015-12-23 17:37:02 -05:00
try:
f.readinto(bytearray(4))
except OSError:
2021-03-15 09:57:36 -04:00
print("OSError")