summaryrefslogtreecommitdiffstats
path: root/Doc/library/hotshot.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-09-01 13:51:09 (GMT)
committerGeorg Brandl <georg@python.org>2007-09-01 13:51:09 (GMT)
commit55ac8f0f26efdbbcb5cc197f9369d23d50bee908 (patch)
treea0d5b7128c055d8c767652dc3948c3404be06396 /Doc/library/hotshot.rst
parent1617457cff847fed9fadb01f1acf6ba8bb621726 (diff)
downloadcpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.zip
cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.gz
cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.bz2
Get rid of the remaining versionadded/versionchanged directives.
Diffstat (limited to 'Doc/library/hotshot.rst')
-rw-r--r--Doc/library/hotshot.rst8
1 files changed, 0 insertions, 8 deletions
diff --git a/Doc/library/hotshot.rst b/Doc/library/hotshot.rst
index f6b5b13..f10facd 100644
--- a/Doc/library/hotshot.rst
+++ b/Doc/library/hotshot.rst
@@ -8,8 +8,6 @@
.. sectionauthor:: Anthony Baxter <anthony@interlink.com.au>
-.. versionadded:: 2.2
-
This module provides a nicer interface to the :mod:`_hotshot` C module. Hotshot
is a replacement for the existing :mod:`profile` module. As it's written mostly
in C, it should result in a much smaller performance impact than the existing
@@ -22,10 +20,6 @@ in C, it should result in a much smaller performance impact than the existing
recommended to use :mod:`cProfile` instead. :mod:`hotshot` is not maintained and
might be removed from the standard library in the future.
-.. versionchanged:: 2.5
- the results should be more meaningful than in the past: the timing core
- contained a critical bug.
-
.. warning::
The :mod:`hotshot` profiler does not yet work well with threads. It is useful to
@@ -104,8 +98,6 @@ Using hotshot data
:synopsis: Statistical analysis for Hotshot
-.. versionadded:: 2.2
-
This module loads hotshot profiling data into the standard :mod:`pstats` Stats
objects.