This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: debugger ``condition`` and ``ignore`` exception handling
Type: Stage:
Components: Library (Lib) Versions: Python 2.6
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: collinwinter Nosy List: collinwinter, jmjones
Priority: normal Keywords: patch

Created on 2005-04-29 18:25 by jmjones, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
debugger_patch.diff jmjones, 2005-04-29 18:25 debugger_patch.diff
Messages (3)
msg48278 - (view) Author: Jeremy Jones (jmjones) Date: 2005-04-29 18:25
Fixed ``ignore`` and ``condition`` functions in the
debugger (pdb.py) where  they were not handling an
``IndexError`` exception which occurs when an invalid
breakpoint number is passed in.

Added a function ``do_show()`` which lists all
breakpoints.  ``do_show()`` takes a filename pattern as
an argument.
msg48279 - (view) Author: Collin Winter (collinwinter) * (Python committer) Date: 2007-03-11 15:54
I'll apply the fixes to do_ignore() and do_condition(), but I'm not so sure about adding do_show(). This meaning of "show" would diverge wildly from gdb's command of the same name.
msg48280 - (view) Author: Collin Winter (collinwinter) * (Python committer) Date: 2007-03-11 16:06
Applied the bug fix portion of the patch as r54271 (trunk), r54273 (release25-maint). Thanks for the fix!
History
Date User Action Args
2022-04-11 14:56:11adminsetgithub: 41925
2005-04-29 18:25:52jmjonescreate