Mailing List Archive

python/dist/src/Doc/ref ref3.tex,1.82.4.5,1.82.4.6
Update of /cvsroot/python/python/dist/src/Doc/ref
In directory usw-pr-cvs1:/tmp/cvs-serv9204

Modified Files:
Tag: release22-maint
ref3.tex
Log Message:
Backport 1.94:

Clarified that the footnote applies to versions 1.5 and after instead of
just version 1.5. Closes SF bug 577793.



Index: ref3.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ref/ref3.tex,v
retrieving revision 1.82.4.5
retrieving revision 1.82.4.6
diff -C2 -d -r1.82.4.5 -r1.82.4.6
*** ref3.tex 24 Sep 2002 21:01:07 -0000 1.82.4.5
--- ref3.tex 5 Oct 2002 06:40:49 -0000 1.82.4.6
***************
*** 960,967 ****
globals referenced by the \method{__del__()} method may already have been
deleted. For this reason, \method{__del__()} methods should do the
! absolute minimum needed to maintain external invariants. Python 1.5
! guarantees that globals whose name begins with a single underscore are
! deleted from their module before other globals are deleted; if no
! other references to such globals exist, this may help in assuring that
imported modules are still available at the time when the
\method{__del__()} method is called.
--- 960,967 ----
globals referenced by the \method{__del__()} method may already have been
deleted. For this reason, \method{__del__()} methods should do the
! absolute minimum needed to maintain external invariants. Starting with
! version 1.5, Python guarantees that globals whose name begins with a single
! underscore are deleted from their module before other globals are deleted;
! if no other references to such globals exist, this may help in assuring that
imported modules are still available at the time when the
\method{__del__()} method is called.