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.

Author Hernot
Recipients Hernot
Date 2019-01-07.13:55:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1546869350.93.0.529177618496.issue35679@roundup.psfhosted.org>
In-reply-to
Content
I like the PDB debugger it is a quite powerfull tool, despite a few donws. One is that cleanup code eg registered by debugged script, module is not executed on restart. a crude hack is to check whether pdb is invoked via python -mpdb using inspect and decorate pdb._runscript and psb._runmodule methods with own versions calling registered cleanup methods before returning to main.

A cleaner approach would be if either pdb intercepts atexit calls recording any method which is registered by a call to atexit.register or provide it's own atexit method to register methods which pdb should call to revert to a clean enviroment expected by the script or module at startup.

open to any discussion, examples will follow as necessary.
History
Date User Action Args
2019-01-07 13:55:54Hernotsetrecipients: + Hernot
2019-01-07 13:55:50Hernotsetmessageid: <1546869350.93.0.529177618496.issue35679@roundup.psfhosted.org>
2019-01-07 13:55:50Hernotlinkissue35679 messages
2019-01-07 13:55:50Hernotcreate