[Python-checkins] r45648 - python/trunk/Doc/lib/libprofile.tex
george.yoshida
python-checkins at python.org
Sat Apr 22 17:27:15 CEST 2006
Author: george.yoshida
Date: Sat Apr 22 17:27:14 2006
New Revision: 45648
Modified:
python/trunk/Doc/lib/libprofile.tex
Log:
- add versionadded tag
- make arbitrary arguments come last
Modified: python/trunk/Doc/lib/libprofile.tex
==============================================================================
--- python/trunk/Doc/lib/libprofile.tex (original)
+++ python/trunk/Doc/lib/libprofile.tex Sat Apr 22 17:27:14 2006
@@ -391,7 +391,7 @@
% (This \stmodindex use may be hard to change ;-( )
\stmodindex{pstats}
-\begin{classdesc}{Stats}{filename\optional{, \moreargs\optional{, stream=sys.stdout}}}
+\begin{classdesc}{Stats}{filename\optional{, stream=sys.stdout\optional{, \moreargs}}}
This class constructor creates an instance of a ``statistics object''
from a \var{filename} (or set of filenames). \class{Stats} objects are
manipulated by methods, in order to print useful reports. You may specify
@@ -409,6 +409,8 @@
processes can be considered in a single report. If additional files
need to be combined with data in an existing \class{Stats} object, the
\method{add()} method can be used.
+
+\versionchanged[The \var{stream} parameter was added]{2.5}
\end{classdesc}
More information about the Python-checkins
mailing list