From a3e56a6cebecf4073458f7ecabcbf42c4bc6f3b3 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Fri, 13 Apr 2001 14:34:58 +0000 Subject: [PATCH] Minor markup adjustments. Turn reference to the cmd module into a hyperlink. --- Doc/lib/libprofile.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/lib/libprofile.tex b/Doc/lib/libprofile.tex index f206a160f18..a8861c3f8ae 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