diff options
author | Georg Brandl <georg@python.org> | 2009-09-04 08:09:32 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-09-04 08:09:32 +0000 |
commit | 85477afcb619e30bbe380d018ad4bc3844a04ceb (patch) | |
tree | f232d4a6264b3aaae06f5e72ac20b742d77d730b /Lib/cProfile.py | |
parent | 395ed245893fafd75f4402ab4cb6f67a2c9a686a (diff) | |
download | cpython-git-85477afcb619e30bbe380d018ad4bc3844a04ceb.tar.gz |
Remove backwards compatibility stuff from profile/cProfile.
Diffstat (limited to 'Lib/cProfile.py')
-rwxr-xr-x | Lib/cProfile.py | 5 |
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): |