Commit 751c2038 authored by Benjamin Peterson's avatar Benjamin Peterson

Merged revisions 75032 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r75032 | benjamin.peterson | 2009-09-22 17:15:28 -0500 (Tue, 22 Sep 2009) | 1 line

  fix typos/rephrase
........
parent e0789ac0
...@@ -400,12 +400,12 @@ always available. ...@@ -400,12 +400,12 @@ always available.
does not have to hold true for third-party extensions as it is implementation does not have to hold true for third-party extensions as it is implementation
specific. specific.
The *default* argument allows to define a value which will be returned If given, *default* will be returned if the object does not provide means to
if the object type does not provide means to retrieve the size and would retrieve the size. Otherwise a `TypeError` will be raised.
cause a `TypeError`.
:func:`getsizeof` calls the object's __sizeof__ method and adds an additional :func:`getsizeof` calls the object's ``__sizeof__`` method and adds an
garbage collector overhead if the object is managed by the garbage collector. additional garbage collector overhead if the object is managed by the garbage
collector.
.. versionadded:: 2.6 .. versionadded:: 2.6
......
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