[Python-checkins] r55578 - python/branches/release24-maint/Doc/lib/liblogging.tex

vinay.sajip python-checkins at python.org
Fri May 25 09:17:43 CEST 2007


Author: vinay.sajip
Date: Fri May 25 09:17:37 2007
New Revision: 55578

Modified:
   python/branches/release24-maint/Doc/lib/liblogging.tex
Log:
Updated findCaller documentation.

Modified: python/branches/release24-maint/Doc/lib/liblogging.tex
==============================================================================
--- python/branches/release24-maint/Doc/lib/liblogging.tex	(original)
+++ python/branches/release24-maint/Doc/lib/liblogging.tex	Fri May 25 09:17:37 2007
@@ -428,9 +428,11 @@
 Removes the specified handler \var{hdlr} from this logger.
 \end{methoddesc}
 
-\begin{methoddesc}{findCaller}{}
-Finds the caller's source filename and line number. Returns the filename
-and line number as a 2-element tuple.
+\begin{methoddesc}[Logger]{findCaller}{}
+Finds the caller's source filename and line number. Returns the filename,
+line number and function name as a 3-element tuple.
+\versionchanged[The function name was added. In earlier versions, the
+filename and line number were returned as a 2-element tuple.]
 \end{methoddesc}
 
 \begin{methoddesc}{handle}{record}


More information about the Python-checkins mailing list