diff options
author | Guido van Rossum <guido@python.org> | 2015-09-10 19:11:17 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2015-09-10 19:11:17 (GMT) |
commit | d076454bd355f51241ddc6fbbc8ff22ef510e7fb (patch) | |
tree | 62d3040a309b5018182335cec4fdfa407315cb94 /Doc | |
parent | f29ab72162d9bec16c482e4657119135d933825b (diff) | |
download | cpython-d076454bd355f51241ddc6fbbc8ff22ef510e7fb.zip cpython-d076454bd355f51241ddc6fbbc8ff22ef510e7fb.tar.gz cpython-d076454bd355f51241ddc6fbbc8ff22ef510e7fb.tar.bz2 |
Add the original author of profile.py back to the docs, at his request.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/profile.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/profile.rst b/Doc/library/profile.rst index c7007a6..210e99c 100644 --- a/Doc/library/profile.rst +++ b/Doc/library/profile.rst @@ -35,7 +35,7 @@ profiling interface: 2. :mod:`profile`, a pure Python module whose interface is imitated by :mod:`cProfile`, but which adds significant overhead to profiled programs. If you're trying to extend the profiler in some way, the task might be easier - with this module. + with this module. Originally designed and written by Jim Roskind. .. versionchanged:: 2.4 Now also reports the time spent in calls to built-in functions |