From: Georg Brandl Date: Fri, 22 Feb 2008 12:57:05 +0000 (+0000) Subject: Another fix. X-Git-Tag: v2.6a1~116 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1699db145fd482704173b2da072981ea52c47141;p=python Another fix. --- diff --git a/Doc/library/weakref.rst b/Doc/library/weakref.rst index 5a79cfad64..d27eb2ec05 100644 --- a/Doc/library/weakref.rst +++ b/Doc/library/weakref.rst @@ -63,7 +63,7 @@ support weak references but can add support through subclassing:: class Dict(dict): pass - obj = Dict(red=1, green=2, blue=3) # this object is weak referencable + obj = Dict(red=1, green=2, blue=3) # this object is weak referenceable Extension types can easily be made to support weak references; see :ref:`weakref-support`.