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

Senthil report at bugs.python.org
Tue Feb 3 14:51:49 CET 2009


New submission from Senthil <orsenthil at gmail.com>:

When using the python debugger, most often I  step ('s') through the
code base and I often Call the standard library modules, whichever are
imported in the scripts.
This is often not desirable as I know that errors are within my modules
and not in standard library.
Two things which a developer can do while using pdb is:
1) Be careful as not to 's' into stdlib but use next 'n'.
2) If accidentally stepped into, then use return 'r'.

Instead of doing this repeatedly, how about having method in the
debugger to skip certain modules ( like standard library modules,
certain package's modules etc)

This would save a lot of distraction in call and returns, and developers
can just go ahead with 's' and Enters.

----------
messages: 81058
nosy: orsenthil
severity: normal
status: open
title: pdb feature request: Ability to skip standard lib modules and other selected packages/modules
type: feature request
versions: Python 2.6, Python 2.7, Python 3.0, Python 3.1

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue5142>
_______________________________________


More information about the Python-bugs-list mailing list