diff options
author | Fred Drake <fdrake@acm.org> | 2001-10-26 03:00:39 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-10-26 03:00:39 (GMT) |
commit | 3a2c462436bd03e43dd632058a074ac7e6c448ab (patch) | |
tree | c6946929e87cb7dad7455670909681c3b944653a /Doc | |
parent | 2539cf5aadd5c7d6ceb6e8db36c98ed83ca62b48 (diff) | |
download | cpython-3a2c462436bd03e43dd632058a074ac7e6c448ab.zip cpython-3a2c462436bd03e43dd632058a074ac7e6c448ab.tar.gz cpython-3a2c462436bd03e43dd632058a074ac7e6c448ab.tar.bz2 |
Minor textual adjustment, and style-guide conformance (no use of "iff").
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libweakref.tex | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Doc/lib/libweakref.tex b/Doc/lib/libweakref.tex index d88b051..4b3767e 100644 --- a/Doc/lib/libweakref.tex +++ b/Doc/lib/libweakref.tex @@ -47,10 +47,11 @@ be made to support weak references; see section \ref{weakref-extension}, the \var{object} was deleted, the call will raise \exception{TypeError}. - Weak references support test for equality, but not ordering. If the - \var{object} is still alive, to references are equal if the objects - are equal (regardless of the \var{callback}). If the \var{object} - has been deleted, they are equal iff they are identical. + Weak references support tests for equality, but not ordering. If + the \var{object} is still alive, two references are equal if the + objects are equal (regardless of the \var{callback}). If + \var{object} has been deleted, they are equal only if the references + being compared are the same reference object. \end{funcdesc} \begin{funcdesc}{proxy}{object\optional{, callback}} |