commit | 4d4313d59dc0020fd9cd913e020de88b98f0ba50 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Tue May 05 08:54:11 2009 +0000 |
committer | Georg Brandl <georg@python.org> | Tue May 05 08:54:11 2009 +0000 |
tree | 4a96df4e750f1eb680d694a43d2ff4317bf9de7b | |
parent | e3869c41f289126df4927a0bca97b3aa118f49d8 [diff] [blame] |
#5142: add module skipping feature to pdb.
diff --git a/Lib/pdb.py b/Lib/pdb.py index 2f42b31..2ff265c 100755 --- a/Lib/pdb.py +++ b/Lib/pdb.py
@@ -58,8 +58,8 @@ 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