summaryrefslogtreecommitdiffstats
path: root/Lib/cProfile.py
diff options
context:
space:
mode:
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 5d04341..bacfef8 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):