[Python-checkins] CVS: python/dist/src/Doc/lib libprofile.tex,1.31,1.32

Fred L. Drake fdrake@users.sourceforge.net
Fri, 13 Apr 2001 07:35:00 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv7746/lib

Modified Files:
	libprofile.tex 
Log Message:

Minor markup adjustments.
Turn reference to the cmd module into a hyperlink.


Index: libprofile.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libprofile.tex,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -r1.31 -r1.32
*** libprofile.tex	2001/04/13 00:23:01	1.31
--- libprofile.tex	2001/04/13 14:34:58	1.32
***************
*** 223,227 ****
  Invoked as a script, the \module{pstats} module is a statistics
  browser for reading and examining profile dumps.  It has a simple
! line-oriented interface (implemented using \module{cmd}) and
  interactive help.
  
--- 223,227 ----
  Invoked as a script, the \module{pstats} module is a statistics
  browser for reading and examining profile dumps.  It has a simple
! line-oriented interface (implemented using \refmodule{cmd}) and
  interactive help.
  
***************
*** 230,234 ****
  
  \dfn{Deterministic profiling} is meant to reflect the fact that all
! \dfn{function call}, \dfn{function return}, and \dfn{exception} events
  are monitored, and precise timings are made for the intervals between
  these events (during which time the user's code is executing).  In
--- 230,234 ----
  
  \dfn{Deterministic profiling} is meant to reflect the fact that all
! \emph{function call}, \emph{function return}, and \emph{exception} events
  are monitored, and precise timings are made for the intervals between
  these events (during which time the user's code is executing).  In