[issue5142] pdb feature request: Ability to skip standard lib modules and other selected packages/modules

2009-04-02 Thread Maru Newby
Maru Newby added the comment: Added a skip keyword argument to Bdb and Pdb class constructors to allow skipping of modules based on a list of glob-style matches (see fnmatch), as per the following example: import pdb;Pdb(skip=['django.command*']).set_trace() -- keywords: +

[issue5215] change value of local variable in debug

2009-04-01 Thread Maru Newby
Maru Newby added the comment: Modifications to the f_locals dict are only saved at the end of traceback, and each traceback function was using the f_locals accessor that returns the dict state as of the start of traceback. The provided patch caches f_locals on setup and ensures that all

[issue5656] Coverage execution fails for files not encoded with utf-8

2009-04-01 Thread Maru Newby
Changes by Maru Newby : Added file: http://bugs.python.org/file13554/trace_ignore_temp_path.patch ___ Python tracker <http://bugs.python.org/issue5656> ___ ___ Python-bug

[issue5656] Coverage execution fails for files not encoded with utf-8

2009-04-01 Thread Maru Newby
New submission from Maru Newby : Running the tests with coverage against files using non-utf8 encoding was raising an exception that prevented coverage output from being displayed (patch is attached). The coverage output was also being polluted with failed attempts to display modules that were