[Python-checkins] python/dist/src/Doc/lib libweakref.tex,1.22,1.23

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Tue Feb 3 14:44:56 EST 2004


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26448

Modified Files:
	libweakref.tex 
Log Message:
Clarify minor point about the ref() and proxy() constructors.
This matches what is already documented for corresponding feature of the C API.


Index: libweakref.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libweakref.tex,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** libweakref.tex	30 Dec 2003 16:15:35 -0000	1.22
--- libweakref.tex	3 Feb 2004 19:44:26 -0000	1.23
***************
*** 59,63 ****
    alive; if the referent is no longer alive, calling the reference
    object will cause \code{None} to be returned.  If \var{callback} is
!   provided, it will be called when the object is about to be
    finalized; the weak reference object will be passed as the only
    parameter to the callback; the referent will no longer be available.
--- 59,64 ----
    alive; if the referent is no longer alive, calling the reference
    object will cause \code{None} to be returned.  If \var{callback} is
!   provided and not \constant{None},
!   it will be called when the object is about to be
    finalized; the weak reference object will be passed as the only
    parameter to the callback; the referent will no longer be available.




More information about the Python-checkins mailing list