mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 09:50:20 +02:00
This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
19 lines
232 B
Python
19 lines
232 B
Python
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())
|