mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
Added to-do list.
This commit is contained in:
parent
7ac4878773
commit
92df0c67d0
1 changed files with 13 additions and 1 deletions
14
Lib/pdb.py
14
Lib/pdb.py
|
@ -1,4 +1,16 @@
|
|||
# pdb.py -- finally, a Python debugger!
|
||||
# pdb.py -- finally, a Python debugger! See below for instructions.
|
||||
|
||||
|
||||
# To do:
|
||||
# - Keep a list of exceptions trapped (default only KeyboardInterrupt?)
|
||||
# - It should be possible to intercept KeyboardInterrupt completely
|
||||
# - Handle return events differently (how?)
|
||||
# - When stopping on an exception, show traceback stack
|
||||
# - Merge with tb (for post-mortem usage)
|
||||
# - Show stack traces upside-down (like dbx/gdb) ???
|
||||
# (actually, the current way is more natural given the directions
|
||||
# taken by the up/down commands)
|
||||
|
||||
|
||||
# To use the debugger in its simplest form:
|
||||
# >>> import pdb
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue