summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2015-09-10 19:12:01 (GMT)
committerGuido van Rossum <guido@python.org>2015-09-10 19:12:01 (GMT)
commit6eb740b12a71b3bdb26524cfdc1dbd26cd3261a0 (patch)
tree61550f57679870853c5ed508fbb0531f2badae08
parent573e2cd383d53dffb1d8ee50c7930099d4aff410 (diff)
downloadcpython-6eb740b12a71b3bdb26524cfdc1dbd26cd3261a0.zip
cpython-6eb740b12a71b3bdb26524cfdc1dbd26cd3261a0.tar.gz
cpython-6eb740b12a71b3bdb26524cfdc1dbd26cd3261a0.tar.bz2
Add the original author of profile.py back to the docs, at his request.
-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 2928821..959d9b9 100644
--- a/Doc/library/profile.rst
+++ b/Doc/library/profile.rst
@@ -33,7 +33,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.
.. note::