[Python-checkins] r53075 - python/branches/release25-maint/Doc/lib/liblogging.tex

vinay.sajip python-checkins at python.org
Tue Dec 19 19:31:23 CET 2006


Author: vinay.sajip
Date: Tue Dec 19 19:31:22 2006
New Revision: 53075

Modified:
   python/branches/release25-maint/Doc/lib/liblogging.tex
Log:
Updated documentation for findCaller() to indicate that a 3-tuple is now returned, rather than a 2-tuple.

Modified: python/branches/release25-maint/Doc/lib/liblogging.tex
==============================================================================
--- python/branches/release25-maint/Doc/lib/liblogging.tex	(original)
+++ python/branches/release25-maint/Doc/lib/liblogging.tex	Tue Dec 19 19:31:22 2006
@@ -516,8 +516,10 @@
 \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.
+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.]{2.5}
 \end{methoddesc}
 
 \begin{methoddesc}{handle}{record}


More information about the Python-checkins mailing list