diff options
Diffstat (limited to 'Lib/pdb.py')
-rwxr-xr-x | Lib/pdb.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/pdb.py b/Lib/pdb.py index d7fe54ab72..6e074a981c 100755 --- a/Lib/pdb.py +++ b/Lib/pdb.py @@ -13,6 +13,9 @@ import repr import os import re +__all__ = ["run", "pm", "Pdb", "runeval", "runctx", "runcall", "set_trace", + "post_mortem", "help"] + def find_function(funcname, filename): cre = re.compile(r'def\s+%s\s*[(]' % funcname) try: |