diff options
author | Brett Cannon <bcannon@gmail.com> | 2009-09-22 20:06:53 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2009-09-22 20:06:53 (GMT) |
commit | e0789ac0c9156e7d2921bd1e23b897ca8d86dcdb (patch) | |
tree | 3326ee7634d3eb1a36eb7c841a7287d524af4f97 /Doc | |
parent | d787abffc06141076fe408069b8d10da3870a2c0 (diff) | |
download | cpython-e0789ac0c9156e7d2921bd1e23b897ca8d86dcdb.zip cpython-e0789ac0c9156e7d2921bd1e23b897ca8d86dcdb.tar.gz cpython-e0789ac0c9156e7d2921bd1e23b897ca8d86dcdb.tar.bz2 |
Merged revisions 75024 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75024 | brett.cannon | 2009-09-22 13:04:24 -0700 (Tue, 22 Sep 2009) | 1 line
Fix a minor doc syntax typo.
........
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/sys.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 61b7576..e1dedd6 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -404,7 +404,7 @@ always available. if the object type does not provide means to retrieve the size and would 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 additional garbage collector overhead if the object is managed by the garbage collector. .. versionadded:: 2.6 |