Bug #489256: remove out of date and out of place profile.doc, and let

profile.help() point at the library reference instead of profile.doc.
This commit is contained in:
Johannes Gijsbers 2005-01-10 09:07:22 +00:00
parent 77ead87f30
commit c0b194a770
2 changed files with 3 additions and 715 deletions

View file

@ -4,8 +4,6 @@
#
# Based on prior profile module by Sjoerd Mullender...
# which was hacked somewhat by: Guido van Rossum
#
# See profile.doc for more information
"""Class for profiling Python code."""
@ -94,18 +92,10 @@ def runctx(statement, globals, locals, filename=None):
else:
return prof.print_stats()
# print help
# Backwards compatibility.
def help():
for dirname in sys.path:
fullname = os.path.join(dirname, 'profile.doc')
if os.path.exists(fullname):
sts = os.system('${PAGER-more} ' + fullname)
if sts: print '*** Pager exit status:', sts
break
else:
print 'Sorry, can\'t find the help file "profile.doc"',
print 'along the Python search path.'
print "Documentation for the profile module can be found "
print "in the Python Library Reference, section 'The Python Profiler'."
if os.name == "mac":
import MacOS