]> granicus.if.org Git - python/commitdiff
Merged revisions 80983 via svnmerge from
authorBenjamin Peterson <benjamin@python.org>
Sat, 8 May 2010 15:29:41 +0000 (15:29 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sat, 8 May 2010 15:29:41 +0000 (15:29 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r80983 | benjamin.peterson | 2010-05-08 10:26:30 -0500 (Sat, 08 May 2010) | 1 line

  replace long with int
........

Doc/library/weakref.rst

index ec88b1e25cf12b865e4319f1fce47eaa70261d7e..612e56f9bab42d4a88c9686c757218c70475db35 100644 (file)
@@ -69,9 +69,9 @@ 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.).
+Other built-in types such as :class:`tuple` and :class:`int` do not support 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`.