From: Georg Brandl Date: Fri, 4 Sep 2009 17:15:16 +0000 (+0000) Subject: Remove the just-removed "help" from __all__. X-Git-Tag: v3.2a1~2614 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b6b13248e5e1090ba71098f76454eaa4cb422eed;p=python Remove the just-removed "help" from __all__. --- diff --git a/Lib/cProfile.py b/Lib/cProfile.py index bacfef83a7..a7686ed2b7 100755 --- a/Lib/cProfile.py +++ b/Lib/cProfile.py @@ -4,7 +4,7 @@ Compatible with the 'profile' module. """ -__all__ = ["run", "runctx", "help", "Profile"] +__all__ = ["run", "runctx", "Profile"] import _lsprof diff --git a/Lib/profile.py b/Lib/profile.py index 5120047a61..d1a869a249 100755 --- a/Lib/profile.py +++ b/Lib/profile.py @@ -39,7 +39,7 @@ import time import marshal from optparse import OptionParser -__all__ = ["run", "runctx", "help", "Profile"] +__all__ = ["run", "runctx", "Profile"] # Sample timer for use with #i_count = 0