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

import micropython

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

micropython.heap_lock()

buf.write(data)

micropython.heap_unlock()

print(buf.getvalue())