diff options
author | Georg Brandl <georg@python.org> | 2007-09-01 13:51:09 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-09-01 13:51:09 (GMT) |
commit | 55ac8f0f26efdbbcb5cc197f9369d23d50bee908 (patch) | |
tree | a0d5b7128c055d8c767652dc3948c3404be06396 /Doc/library/profile.rst | |
parent | 1617457cff847fed9fadb01f1acf6ba8bb621726 (diff) | |
download | cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.zip cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.gz cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.bz2 |
Get rid of the remaining versionadded/versionchanged directives.
Diffstat (limited to 'Doc/library/profile.rst')
-rw-r--r-- | Doc/library/profile.rst | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/Doc/library/profile.rst b/Doc/library/profile.rst index 2ab24c5..4fbcf77 100644 --- a/Doc/library/profile.rst +++ b/Doc/library/profile.rst @@ -62,22 +62,13 @@ The Python standard library provides three different profilers: #. :mod:`profile`, a pure Python module, described in the sequel. Copyright © 1994, by InfoSeek Corporation. - .. versionchanged:: 2.4 - also reports the time spent in calls to built-in functions and methods. - #. :mod:`cProfile`, a module written in C, with a reasonable overhead that makes it suitable for profiling long-running programs. Based on :mod:`lsprof`, contributed by Brett Rosen and Ted Czotter. - .. versionadded:: 2.5 - #. :mod:`hotshot`, a C module focusing on minimizing the overhead while profiling, at the expense of long data post-processing times. - .. versionchanged:: 2.5 - the results should be more meaningful than in the past: the timing core - contained a critical bug. - The :mod:`profile` and :mod:`cProfile` modules export the same interface, so they are mostly interchangeables; :mod:`cProfile` has a much lower overhead but is not so far as well-tested and might not be available on all systems. @@ -376,11 +367,6 @@ Analysis of the profiler data is done using the :class:`Stats` class. a single report. If additional files need to be combined with data in an existing :class:`Stats` object, the :meth:`add` method can be used. - .. % (such as the old system profiler). - - .. versionchanged:: 2.5 - The *stream* parameter was added. - .. _profile-stats: @@ -419,8 +405,6 @@ The :class:`Stats` Class exists. This is equivalent to the method of the same name on the :class:`profile.Profile` and :class:`cProfile.Profile` classes. - .. versionadded:: 2.3 - .. method:: Stats.sort_stats(key[, ...]) |