home *** CD-ROM | disk | FTP | other *** search
- <TITLE>Profiler Introduction -- Python library reference</TITLE>
- Next: <A HREF="../p/profiler_changes" TYPE="Next">Profiler Changes</A>
- Prev: <A HREF="../t/the_python_profiler" TYPE="Prev">The Python Profiler</A>
- Up: <A HREF="../t/the_python_profiler" TYPE="Up">The Python Profiler</A>
- Top: <A HREF="../t/top" TYPE="Top">Top</A>
- <H1>9.1. Introduction to the profiler</H1>
- A <DFN>profiler</DFN> is a program that describes the run time performance
- of a program, providing a variety of statistics. This documentation
- describes the profiler functionality provided in the modules
- <CODE>profile</CODE> and <CODE>pstats.</CODE> This profiler provides
- <DFN>deterministic profiling</DFN> of any Python programs. It also
- provides a series of report generation tools to allow users to rapidly
- examine the results of a profile operation.
- <P>
-