Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 92df0c6

Browse files
committed
Added to-do list.
1 parent 7ac4878 commit 92df0c6

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

Lib/pdb.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
# pdb.py -- finally, a Python debugger!
1+
# pdb.py -- finally, a Python debugger! See below for instructions.
2+
3+
4+
# To do:
5+
# - Keep a list of exceptions trapped (default only KeyboardInterrupt?)
6+
# - It should be possible to intercept KeyboardInterrupt completely
7+
# - Handle return events differently (how?)
8+
# - When stopping on an exception, show traceback stack
9+
# - Merge with tb (for post-mortem usage)
10+
# - Show stack traces upside-down (like dbx/gdb) ???
11+
# (actually, the current way is more natural given the directions
12+
# taken by the up/down commands)
13+
214

315
# To use the debugger in its simplest form:
416
# >>> import pdb

0 commit comments

Comments
 (0)