From: Guido van Rossum Date: Tue, 23 Mar 2004 19:19:21 +0000 (+0000) Subject: Add runctx to __all__. X-Git-Tag: v2.4a1~594 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=48713e87987e8473b3b2f650e19c27236f671656;p=thirdparty%2FPython%2Fcpython.git Add runctx to __all__. --- diff --git a/Lib/profile.py b/Lib/profile.py index 2db70b7ea086..cf22377653fc 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