summaryrefslogtreecommitdiffstats
path: root/Lib/pdb.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-05-05 09:00:19 (GMT)
committerGeorg Brandl <georg@python.org>2009-05-05 09:00:19 (GMT)
commit243ad66ba63f6af19ca941add4b5a29eae109f31 (patch)
tree0b0078f87750df9a8ae60f251976790b4035729e /Lib/pdb.py
parent991f9202bede42b033e499525755daed4a1c07be (diff)
downloadcpython-243ad66ba63f6af19ca941add4b5a29eae109f31.zip
cpython-243ad66ba63f6af19ca941add4b5a29eae109f31.tar.gz
cpython-243ad66ba63f6af19ca941add4b5a29eae109f31.tar.bz2
Merged revisions 72322 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72322 | georg.brandl | 2009-05-05 10:54:11 +0200 (Di, 05 Mai 2009) | 1 line #5142: add module skipping feature to pdb. ........
Diffstat (limited to 'Lib/pdb.py')
-rwxr-xr-xLib/pdb.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/pdb.py b/Lib/pdb.py
index 22fc4c5..c9c66c5 100755
--- a/Lib/pdb.py
+++ b/Lib/pdb.py
@@ -58,8 +58,8 @@ line_prefix = '\n-> ' # Probably a better default
class Pdb(bdb.Bdb, cmd.Cmd):
- def __init__(self, completekey='tab', stdin=None, stdout=None):
- bdb.Bdb.__init__(self)
+ def __init__(self, completekey='tab', stdin=None, stdout=None, skip=None):
+ bdb.Bdb.__init__(self, skip=skip)
cmd.Cmd.__init__(self, completekey, stdin, stdout)
if stdout:
self.use_rawinput = 0