Another fix.

This commit is contained in:
Georg Brandl 2008-02-22 12:57:05 +00:00
parent 4e37c66262
commit 1699db145f
1 changed files with 1 additions and 1 deletions

View File

@ -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`.