home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / python / pyhtml / pyhtmldoc / p / profiler_i < prev    next >
Encoding:
Text File  |  1996-11-14  |  842 b   |  15 lines

  1. <TITLE>Profiler Introduction -- Python library reference</TITLE>
  2. Next: <A HREF="../p/profiler_changes" TYPE="Next">Profiler Changes</A>  
  3. Prev: <A HREF="../t/the_python_profiler" TYPE="Prev">The Python Profiler</A>  
  4. Up: <A HREF="../t/the_python_profiler" TYPE="Up">The Python Profiler</A>  
  5. Top: <A HREF="../t/top" TYPE="Top">Top</A>  
  6. <H1>9.1. Introduction to the profiler</H1>
  7. A <DFN>profiler</DFN> is a program that describes the run time performance
  8. of a program, providing a variety of statistics.  This documentation
  9. describes the profiler functionality provided in the modules
  10. <CODE>profile</CODE> and <CODE>pstats.</CODE>  This profiler provides
  11. <DFN>deterministic profiling</DFN> of any Python programs.  It also
  12. provides a series of report generation tools to allow users to rapidly
  13. examine the results of a profile operation.
  14. <P>
  15.