summaryrefslogtreecommitdiff
path: root/tests/micropython/heapalloc_bytesio.py
blob: 4aae2abf063e876c9e2201bc1f646dec704feb4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
try:
    import uio
except ImportError:
    print("SKIP")
    raise SystemExit

import micropython

data = b"1234" * 16
buf = uio.BytesIO(64)

micropython.heap_lock()

buf.write(data)

micropython.heap_unlock()

print(buf.getvalue())