diff options
author | Raymond Hettinger <python@rcn.com> | 2002-09-08 21:10:54 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2002-09-08 21:10:54 (GMT) |
commit | a0e4d6ceaf330821634dbc65610a1f51eaf6f542 (patch) | |
tree | ee841bf6a5cc9757971242265da37203a4e973ce /Doc/ref | |
parent | 57e79459fa872c4fc1724e34b9d2f90d53aac818 (diff) | |
download | cpython-a0e4d6ceaf330821634dbc65610a1f51eaf6f542.zip cpython-a0e4d6ceaf330821634dbc65610a1f51eaf6f542.tar.gz cpython-a0e4d6ceaf330821634dbc65610a1f51eaf6f542.tar.bz2 |
Clarified that the footnote applies to versions 1.5 and after instead of
just version 1.5. Closes SF bug 577793.
Diffstat (limited to 'Doc/ref')
-rw-r--r-- | Doc/ref/ref3.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/ref/ref3.tex b/Doc/ref/ref3.tex index 9f8d262..c266a77 100644 --- a/Doc/ref/ref3.tex +++ b/Doc/ref/ref3.tex @@ -986,10 +986,10 @@ instead. Also, when \method{__del__()} is invoked in response to a module being deleted (e.g., when execution of the program is done), other 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 +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. \end{notice} |