diff options
author | Guido van Rossum <guido@python.org> | 1992-01-14 18:30:15 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-01-14 18:30:15 (GMT) |
commit | 92df0c67d013fcfc2042ccc3106fb9d1f077d783 (patch) | |
tree | 3e7b232d91929828ac64143eba2c80928672a402 /Lib | |
parent | 7ac4878773040158038031a85be122d9e7071afe (diff) | |
download | cpython-92df0c67d013fcfc2042ccc3106fb9d1f077d783.zip cpython-92df0c67d013fcfc2042ccc3106fb9d1f077d783.tar.gz cpython-92df0c67d013fcfc2042ccc3106fb9d1f077d783.tar.bz2 |
Added to-do list.
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/pdb.py | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -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 |