Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ac4878 commit 92df0c6Copy full SHA for 92df0c6
1 file changed
Lib/pdb.py
@@ -1,4 +1,16 @@
1
-# pdb.py -- finally, a Python debugger!
+# 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
14
15
# To use the debugger in its simplest form:
16
# >>> import pdb
0 commit comments