From: Fred Drake Date: Fri, 13 Apr 2001 14:34:58 +0000 (+0000) Subject: Minor markup adjustments. X-Git-Tag: v2.1c1~27 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a3e56a6cebecf4073458f7ecabcbf42c4bc6f3b3;p=thirdparty%2FPython%2Fcpython.git Minor markup adjustments. Turn reference to the cmd module into a hyperlink. --- diff --git a/Doc/lib/libprofile.tex b/Doc/lib/libprofile.tex index f206a160f18d..a8861c3f8ae2 100644 --- a/Doc/lib/libprofile.tex +++ b/Doc/lib/libprofile.tex @@ -222,14 +222,14 @@ p.add('fooprof') 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 +line-oriented interface (implemented using \refmodule{cmd}) and interactive help. \section{What Is Deterministic Profiling?} \nodename{Deterministic Profiling} \dfn{Deterministic profiling} is meant to reflect the fact that all -\dfn{function call}, \dfn{function return}, and \dfn{exception} events +\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 contrast, \dfn{statistical profiling} (which is not done by this