Kaydet (Commit) 3a3bba34 authored tarafından Benjamin Peterson's avatar Benjamin Peterson

Merged revisions 80983 via svnmerge from

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
........
üst 858b8f77
...@@ -69,9 +69,9 @@ support weak references but can add support through subclassing:: ...@@ -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 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`.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment