[Python-checkins] r74661 - in python/branches/py3k/Lib: cProfile.py profile.py

georg.brandl python-checkins at python.org
Fri Sep 4 19:15:17 CEST 2009


Author: georg.brandl
Date: Fri Sep  4 19:15:16 2009
New Revision: 74661

Log:
Remove the just-removed "help" from __all__.

Modified:
   python/branches/py3k/Lib/cProfile.py
   python/branches/py3k/Lib/profile.py

Modified: python/branches/py3k/Lib/cProfile.py
==============================================================================
--- python/branches/py3k/Lib/cProfile.py	(original)
+++ python/branches/py3k/Lib/cProfile.py	Fri Sep  4 19:15:16 2009
@@ -4,7 +4,7 @@
    Compatible with the 'profile' module.
 """
 
-__all__ = ["run", "runctx", "help", "Profile"]
+__all__ = ["run", "runctx", "Profile"]
 
 import _lsprof
 

Modified: python/branches/py3k/Lib/profile.py
==============================================================================
--- python/branches/py3k/Lib/profile.py	(original)
+++ python/branches/py3k/Lib/profile.py	Fri Sep  4 19:15:16 2009
@@ -39,7 +39,7 @@
 import marshal
 from optparse import OptionParser
 
-__all__ = ["run", "runctx", "help", "Profile"]
+__all__ = ["run", "runctx", "Profile"]
 
 # Sample timer for use with
 #i_count = 0


More information about the Python-checkins mailing list