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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=48713e87987e8473b3b2f650e19c27236f671656;p=python Add runctx to __all__. --- diff --git a/Lib/profile.py b/Lib/profile.py index 2db70b7ea0..cf22377653 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