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())