Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3a3bba3

Browse files
committed
Merged revisions 80983 via svnmerge from
svn+ssh://[email protected]/python/branches/py3k ........ r80983 | benjamin.peterson | 2010-05-08 10:26:30 -0500 (Sat, 08 May 2010) | 1 line replace long with int ........
1 parent 858b8f7 commit 3a3bba3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Doc/library/weakref.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ support weak references but can add support through subclassing::
6969

7070
obj = Dict(red=1, green=2, blue=3) # this object is weak referenceable
7171

72-
Other built-in types such as :class:`tuple` and :class:`long` do not support
73-
weak references even when subclassed (This is an implementation detail and may
74-
be different across various Python implementations.).
72+
Other built-in types such as :class:`tuple` and :class:`int` do not support weak
73+
references even when subclassed (This is an implementation detail and may be
74+
different across various Python implementations.).
7575

7676
Extension types can easily be made to support weak references; see
7777
:ref:`weakref-support`.

0 commit comments

Comments
 (0)