micropython/tests/micropython/heapalloc_bytesio.py

14 lines
165 B
Python

import uio
import micropython
data = b"1234" * 16
buf = uio.BytesIO(64)
micropython.heap_lock()
buf.write(data)
micropython.heap_unlock()
print(buf.getvalue())