From: Vinay Sajip Date: Fri, 25 May 2007 07:17:37 +0000 (+0000) Subject: Updated findCaller documentation. X-Git-Tag: v2.4.5c1~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26e24391e0d5d974af713765e323037d4e546d25;p=thirdparty%2FPython%2Fcpython.git Updated findCaller documentation. --- diff --git a/Doc/lib/liblogging.tex b/Doc/lib/liblogging.tex index 414555ad0e02..7dcbd9198a20 100644 --- a/Doc/lib/liblogging.tex +++ b/Doc/lib/liblogging.tex @@ -428,9 +428,11 @@ Adds the specified handler \var{hdlr} to this logger. 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}