diff options
Diffstat (limited to 'Lib/cProfile.py')
-rwxr-xr-x | Lib/cProfile.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/cProfile.py b/Lib/cProfile.py index cb26fe1..fb434bd 100755 --- a/Lib/cProfile.py +++ b/Lib/cProfile.py @@ -58,8 +58,8 @@ def runctx(statement, globals, locals, filename=None): # Backwards compatibility. def help(): - print "Documentation for the profile/cProfile modules can be found " - print "in the Python Library Reference, section 'The Python Profiler'." + print("Documentation for the profile/cProfile modules can be found ") + print("in the Python Library Reference, section 'The Python Profiler'.") # ____________________________________________________________ |