summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2015-09-10 19:11:17 (GMT)
committerGuido van Rossum <guido@python.org>2015-09-10 19:11:17 (GMT)
commitd076454bd355f51241ddc6fbbc8ff22ef510e7fb (patch)
tree62d3040a309b5018182335cec4fdfa407315cb94 /Doc
parentf29ab72162d9bec16c482e4657119135d933825b (diff)
downloadcpython-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.rst2
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