diff options
author | Guido van Rossum <guido@python.org> | 2004-03-23 19:19:21 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2004-03-23 19:19:21 (GMT) |
commit | 48713e87987e8473b3b2f650e19c27236f671656 (patch) | |
tree | 93d40150ca5d1650a24209f35f0c757137d92c8c /Lib | |
parent | 6356fff2cb8d0e1bb880f1f4d9b22bd9a37c664e (diff) | |
download | cpython-48713e87987e8473b3b2f650e19c27236f671656.zip cpython-48713e87987e8473b3b2f650e19c27236f671656.tar.gz cpython-48713e87987e8473b3b2f650e19c27236f671656.tar.bz2 |
Add runctx to __all__.
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/profile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/profile.py b/Lib/profile.py index 2db70b7..cf22377 100755 --- a/Lib/profile.py +++ b/Lib/profile.py @@ -41,7 +41,7 @@ import time import marshal from optparse import OptionParser -__all__ = ["run","help","Profile"] +__all__ = ["run", "runctx", "help", "Profile"] # Sample timer for use with #i_count = 0 |