diff options
author | Fred Drake <fdrake@acm.org> | 2006-05-02 06:53:59 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2006-05-02 06:53:59 (GMT) |
commit | 017e68c413be6262eb1e71b0f0c5676d6db33a43 (patch) | |
tree | d9d2649217fc7fc9a2eb2f98870f434a1f1d37ae /Doc | |
parent | a6d01cec3ff3b945565653f96141c693af639924 (diff) | |
download | cpython-017e68c413be6262eb1e71b0f0c5676d6db33a43.zip cpython-017e68c413be6262eb1e71b0f0c5676d6db33a43.tar.gz cpython-017e68c413be6262eb1e71b0f0c5676d6db33a43.tar.bz2 |
SF #1479988: add methods to allow access to weakrefs for the
weakref.WeakKeyDictionary and weakref.WeakValueDictionary
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libweakref.tex | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Doc/lib/libweakref.tex b/Doc/lib/libweakref.tex index 840b674..fc949e6 100644 --- a/Doc/lib/libweakref.tex +++ b/Doc/lib/libweakref.tex @@ -147,6 +147,24 @@ information. to vanish "by magic" (as a side effect of garbage collection).} \end{classdesc} +\class{WeakKeyDictionary} objects have the following additional +methods. These expose the internal references directly. The +references are not guaranteed to be ``live'' at the time they are +used, so the result of calling the references needs to be checked +before being used. This can be used to avoid creating references that +will cause the garbage collector to keep the keys around longer than +needed. + +\begin{methoddesc}{iterkeyrefs}{} + Return an iterator that yields the weak references to the keys. + \versionadded{2.5} +\end{methoddesc} + +\begin{methoddesc}{keyrefs}{} + Return a list of weak references to the keys. + \versionadded{2.5} +\end{methoddesc} + \begin{classdesc}{WeakValueDictionary}{\optional{dict}} Mapping class that references values weakly. Entries in the dictionary will be discarded when no strong reference to the value @@ -160,6 +178,21 @@ information. to vanish "by magic" (as a side effect of garbage collection).} \end{classdesc} +\class{WeakValueDictionary} objects have the following additional +methods. These method have the same issues as the +\method{iterkeyrefs()} and \method{keyrefs()} methods of +\class{WeakKeyDictionary} objects. + +\begin{methoddesc}{itervaluerefs}{} + Return an iterator that yields the weak references to the values. + \versionadded{2.5} +\end{methoddesc} + +\begin{methoddesc}{valuerefs}{} + Return a list of weak references to the values. + \versionadded{2.5} +\end{methoddesc} + \begin{datadesc}{ReferenceType} The type object for weak references objects. \end{datadesc} |