Remove the just-removed "help" from __all__.

This commit is contained in:
Georg Brandl 2009-09-04 17:15:16 +00:00
parent 447324f631
commit b6b13248e5
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
Compatible with the 'profile' module.
"""
__all__ = ["run", "runctx", "help", "Profile"]
__all__ = ["run", "runctx", "Profile"]
import _lsprof

View File

@ -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