summaryrefslogtreecommitdiffstats
path: root/Lib/pdb.py
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2001-02-07 23:14:30 (GMT)
committerSkip Montanaro <skip@pobox.com>2001-02-07 23:14:30 (GMT)
commit352674d01cd37cc8621e8b94c1a91fef5ffc16fe (patch)
treef0f8071d7c55a89eddd438b9dfe1c16481145cd9 /Lib/pdb.py
parentcc012e92b21fbd8476bbaa8d4aa91b7e78111182 (diff)
downloadcpython-352674d01cd37cc8621e8b94c1a91fef5ffc16fe.zip
cpython-352674d01cd37cc8621e8b94c1a91fef5ffc16fe.tar.gz
cpython-352674d01cd37cc8621e8b94c1a91fef5ffc16fe.tar.bz2
a few more __all__ lists
Diffstat (limited to 'Lib/pdb.py')
-rwxr-xr-xLib/pdb.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/pdb.py b/Lib/pdb.py
index d7fe54a..6e074a9 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: