replace long with int

This commit is contained in:
Benjamin Peterson 2010-05-08 15:26:30 +00:00
parent 16f3e90af7
commit 905982b6f9
1 changed files with 3 additions and 3 deletions

View File

@ -72,9 +72,9 @@ support weak references but can add support through subclassing::
obj = Dict(red=1, green=2, blue=3) # this object is weak referenceable 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 Other built-in types such as :class:`tuple` and :class:`int` do not support weak
weak references even when subclassed (This is an implementation detail and may references even when subclassed (This is an implementation detail and may be
be different across various Python implementations.). different across various Python implementations.).
Extension types can easily be made to support weak references; see Extension types can easily be made to support weak references; see
:ref:`weakref-support`. :ref:`weakref-support`.