summaryrefslogtreecommitdiff
path: root/Doc/lib/libprofile.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1998-04-03 07:02:35 +0000
committerFred Drake <fdrake@acm.org>1998-04-03 07:02:35 +0000
commit2e67241d930f968e5a4a0a93e76e9f0adf62bf7c (patch)
treed0b8ef2c4a03f22f56985b3432c18870fa78fde8 /Doc/lib/libprofile.tex
parente2442ab146be38f56c3ae809b9105902bb355f84 (diff)
downloadcpython-2e67241d930f968e5a4a0a93e76e9f0adf62bf7c.tar.gz
Index entries.
Consistency nits.
Diffstat (limited to 'Doc/lib/libprofile.tex')
-rw-r--r--Doc/lib/libprofile.tex29
1 files changed, 15 insertions, 14 deletions
diff --git a/Doc/lib/libprofile.tex b/Doc/lib/libprofile.tex
index debb332940..174b51d801 100644
--- a/Doc/lib/libprofile.tex
+++ b/Doc/lib/libprofile.tex
@@ -2,8 +2,9 @@
\label{profile}
Copyright \copyright{} 1994, by InfoSeek Corporation, all rights reserved.
+\index{InfoSeek Corporation}
-Written by James Roskind.%
+Written by James Roskind\index{Roskind, James}.%
\footnote{
Updated and converted to \LaTeX\ by Guido van Rossum. The references to
the old profiler are left in the text, although it no longer exists.
@@ -128,7 +129,7 @@ The file \file{profile.py} can also be invoked as
a script to profile another script. For example:
\begin{verbatim}
-python /usr/local/lib/python1.4/profile.py myscript.py
+python /usr/local/lib/python1.5/profile.py myscript.py
\end{verbatim}
When you wish to review the profile, you should use the methods in the
@@ -401,16 +402,16 @@ abbreviation is unambiguous. The following are the keys currently
defined:
\begin{tableii}{|l|l|}{code}{Valid Arg}{Meaning}
-\lineii{"calls"}{call count}
-\lineii{"cumulative"}{cumulative time}
-\lineii{"file"}{file name}
-\lineii{"module"}{file name}
-\lineii{"pcalls"}{primitive call count}
-\lineii{"line"}{line number}
-\lineii{"name"}{function name}
-\lineii{"nfl"}{name/file/line}
-\lineii{"stdname"}{standard name}
-\lineii{"time"}{internal time}
+ \lineii{'calls'}{call count}
+ \lineii{'cumulative'}{cumulative time}
+ \lineii{'file'}{file name}
+ \lineii{'module'}{file name}
+ \lineii{'pcalls'}{primitive call count}
+ \lineii{'line'}{line number}
+ \lineii{'name'}{function name}
+ \lineii{'nfl'}{name/file/line}
+ \lineii{'stdname'}{standard name}
+ \lineii{'time'}{internal time}
\end{tableii}
Note that all sorts on statistics are in descending order (placing
@@ -723,8 +724,8 @@ class OldProfile(Profile):
nor_callers = {}
nc = 0
for func_caller in callers.keys():
- nor_callers[self.func_normalize(func_caller)]=\
- callers[func_caller]
+ nor_callers[self.func_normalize(func_caller)] = \
+ callers[func_caller]
nc = nc + callers[func_caller]
self.stats[nor_func] = nc, nc, tt, ct, nor_callers
\end{verbatim}