Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0e474a8

Browse files
committed
remove hotshot profiler from Py3k
1 parent b62e8a8 commit 0e474a8

13 files changed

Lines changed: 14 additions & 2383 deletions

File tree

Doc/library/debug.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,5 @@ allowing you to identify bottlenecks in your programs.
1212
bdb.rst
1313
pdb.rst
1414
profile.rst
15-
hotshot.rst
1615
timeit.rst
1716
trace.rst

Doc/library/hotshot.rst

Lines changed: 0 additions & 144 deletions
This file was deleted.

Doc/library/profile.rst

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ This profiler provides :dfn:`deterministic profiling` of any Python programs.
5757
It also provides a series of report generation tools to allow users to rapidly
5858
examine the results of a profile operation.
5959

60-
The Python standard library provides three different profilers:
60+
The Python standard library provides two different profilers:
6161

6262
#. :mod:`profile`, a pure Python module, described in the sequel. Copyright ©
6363
1994, by InfoSeek Corporation.
@@ -66,15 +66,11 @@ The Python standard library provides three different profilers:
6666
it suitable for profiling long-running programs. Based on :mod:`lsprof`,
6767
contributed by Brett Rosen and Ted Czotter.
6868

69-
#. :mod:`hotshot`, a C module focusing on minimizing the overhead while
70-
profiling, at the expense of long data post-processing times.
71-
7269
The :mod:`profile` and :mod:`cProfile` modules export the same interface, so
7370
they are mostly interchangeables; :mod:`cProfile` has a much lower overhead but
7471
is not so far as well-tested and might not be available on all systems.
7572
:mod:`cProfile` is really a compatibility layer on top of the internal
76-
:mod:`_lsprof` module. The :mod:`hotshot` module is reserved to specialized
77-
usages.
73+
:mod:`_lsprof` module.
7874

7975
.. % \section{How Is This Profiler Different From The Old Profiler?}
8076
.. % \nodename{Profiler Changes}

Lib/hotshot/__init__.py

Lines changed: 0 additions & 76 deletions
This file was deleted.

0 commit comments

Comments
 (0)