From: Guido van Rossum Date: Tue, 14 Jan 1992 18:30:15 +0000 (+0000) Subject: Added to-do list. X-Git-Tag: v0.9.8~600 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=92df0c67d013fcfc2042ccc3106fb9d1f077d783;p=thirdparty%2FPython%2Fcpython.git Added to-do list. --- diff --git a/Lib/pdb.py b/Lib/pdb.py index d9104cf92923..789b57b4efae 100755 --- a/Lib/pdb.py +++ b/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