mirror of
https://github.com/micropython/micropython.git
synced 2026-01-08 21:20:13 +01:00
This improves REPL usage consistency across ports, by utilizing the pyexec code for the unix REPL. Only enabled when MICROPY_USE_READLINE == 1 (the default). Signed-off-by: Andrew Leech <andrew.leech@planetinnovation.com.au>
11 lines
272 B
Plaintext
11 lines
272 B
Plaintext
MicroPython \.\+ version
|
|
Type "help()" for more information.
|
|
>>> import micropython
|
|
>>> micropython.heap_lock()
|
|
>>> 1+1
|
|
2
|
|
>>> micropython.heap_lock()
|
|
>>> None # Cause the repl's line storage to be enlarged ----------------
|
|
>>> micropython.heap_lock()
|
|
>>> raise SystemExit
|