summaryrefslogtreecommitdiff
path: root/Lib/cProfile.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-09-04 08:09:32 +0000
committerGeorg Brandl <georg@python.org>2009-09-04 08:09:32 +0000
commit85477afcb619e30bbe380d018ad4bc3844a04ceb (patch)
treef232d4a6264b3aaae06f5e72ac20b742d77d730b /Lib/cProfile.py
parent395ed245893fafd75f4402ab4cb6f67a2c9a686a (diff)
downloadcpython-git-85477afcb619e30bbe380d018ad4bc3844a04ceb.tar.gz
Remove backwards compatibility stuff from profile/cProfile.
Diffstat (limited to 'Lib/cProfile.py')
-rwxr-xr-xLib/cProfile.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/cProfile.py b/Lib/cProfile.py
index 5d04341d71..bacfef83a7 100755
--- a/Lib/cProfile.py
+++ b/Lib/cProfile.py
@@ -56,11 +56,6 @@ def runctx(statement, globals, locals, filename=None):
result = prof.print_stats()
return result
-# Backwards compatibility.
-def help():
- print("Documentation for the profile/cProfile modules can be found ")
- print("in the Python Library Reference, section 'The Python Profiler'.")
-
# ____________________________________________________________
class Profile(_lsprof.Profiler):