mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 11:30:18 +00:00
486 B
486 B
icon | title |
---|---|
dot | Debugging |
After v1.4.5
, you can invoke breakpoint()
in your python code
to start a PDB-like session.
The following commands are supported:
h, help
: show this help messageq, quit
: exit the debuggern, next
: execute next lines, step
: step intow, where
: show current stack framec, continue
: continue executiona, args
: show local variablesp, print <expr>
: evaluate expression!, execute statement
: execute statement