[Python-checkins] r42344 - python/trunk/Doc/lib/liblogging.tex

neal.norwitz python-checkins at python.org
Mon Feb 13 03:04:38 CET 2006


Author: neal.norwitz
Date: Mon Feb 13 03:04:37 2006
New Revision: 42344

Modified:
   python/trunk/Doc/lib/liblogging.tex
Log:
Doc some user visible changes

Modified: python/trunk/Doc/lib/liblogging.tex
==============================================================================
--- python/trunk/Doc/lib/liblogging.tex	(original)
+++ python/trunk/Doc/lib/liblogging.tex	Mon Feb 13 03:04:37 2006
@@ -526,6 +526,7 @@
                                func, extra}
 This is a factory method which can be overridden in subclasses to create
 specialized \class{LogRecord} instances.
+\versionchanged[\var{func} and \var{extra} were added]{2.5}
 \end{methoddesc}
 
 \subsection{Basic example \label{minimal-example}}
@@ -1387,7 +1388,7 @@
                         call was issued (if available).}
 \lineii{\%(filename)s} {Filename portion of pathname.}
 \lineii{\%(module)s}   {Module (name portion of filename).}
-\lineii{\%(funcName)s}   {Name of function containing the logging call.}
+\lineii{\%(funcName)s} {Name of function containing the logging call.}
 \lineii{\%(lineno)d}   {Source line number where the logging call was issued
                         (if available).}
 \lineii{\%(created)f}  {Time when the \class{LogRecord} was created (as
@@ -1404,6 +1405,8 @@
 \lineii{\%(message)s}  {The logged message, computed as \code{msg \% args}.}
 \end{tableii}
 
+\versionchanged[\var{funcName} was added]{2.5}
+
 \begin{classdesc}{Formatter}{\optional{fmt\optional{, datefmt}}}
 Returns a new instance of the \class{Formatter} class. The
 instance is initialized with a format string for the message as a whole,


More information about the Python-checkins mailing list