2016-10-09 04:54:42 -04:00
|
|
|
# This tests extended (MicroPython-specific) form of write:
|
|
|
|
# write(buf, len) and write(buf, offset, len)
|
2023-08-22 11:15:46 -04:00
|
|
|
import io
|
2016-07-14 04:48:15 -04:00
|
|
|
|
|
|
|
try:
|
2023-08-22 11:15:46 -04:00
|
|
|
io.BytesIO
|
2016-07-14 04:48:15 -04:00
|
|
|
except AttributeError:
|
2021-03-15 09:57:36 -04:00
|
|
|
print("SKIP")
|
2017-06-10 13:14:16 -04:00
|
|
|
raise SystemExit
|
2016-07-14 04:48:15 -04:00
|
|
|
|
2023-08-22 11:15:46 -04:00
|
|
|
buf = io.BytesIO()
|
2016-07-14 04:48:15 -04:00
|
|
|
|
|
|
|
buf.write(b"foo", 2)
|
|
|
|
print(buf.getvalue())
|
|
|
|
|
|
|
|
buf.write(b"foo", 100)
|
|
|
|
print(buf.getvalue())
|
|
|
|
|
|
|
|
buf.write(b"foobar", 1, 3)
|
|
|
|
print(buf.getvalue())
|
|
|
|
|
|
|
|
buf.write(b"foobar", 1, 100)
|
|
|
|
print(buf.getvalue())
|
|
|
|
|
|
|
|
buf.write(b"foobar", 100, 100)
|
|
|
|
print(buf.getvalue())
|