summaryrefslogtreecommitdiffstats
path: root/Doc/library/weakref.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-10-22 07:05:48 (GMT)
committerGeorg Brandl <georg@python.org>2009-10-22 07:05:48 (GMT)
commit0968fd679b134b8939ce40a183b15027eaca716d (patch)
treeefc697288d472130d7d446e0991d8dac3c0494fd /Doc/library/weakref.rst
parent97a57ec0487826b614aeeb198f396eac4f3ab401 (diff)
downloadcpython-0968fd679b134b8939ce40a183b15027eaca716d.zip
cpython-0968fd679b134b8939ce40a183b15027eaca716d.tar.gz
cpython-0968fd679b134b8939ce40a183b15027eaca716d.tar.bz2
Fix punctuation.
Diffstat (limited to 'Doc/library/weakref.rst')
-rw-r--r--Doc/library/weakref.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/weakref.rst b/Doc/library/weakref.rst
index 1c35493..d23e53a 100644
--- a/Doc/library/weakref.rst
+++ b/Doc/library/weakref.rst
@@ -77,8 +77,8 @@ support weak references but can add support through subclassing::
obj = Dict(red=1, green=2, blue=3) # this object is weak referenceable
Other built-in types such as :class:`tuple` and :class:`long` do not support
-weak references even when subclassed (This is an implementation detail and may
-be different across various Python implementations.).
+weak references even when subclassed (this is an implementation detail and may
+be different across various Python implementations).
Extension types can easily be made to support weak references; see
:ref:`weakref-support`.