diff options
author | Brett Cannon <bcannon@gmail.com> | 2009-09-22 20:08:09 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2009-09-22 20:08:09 (GMT) |
commit | 2df811362213d9e987193772d3bf835a204f2727 (patch) | |
tree | 5335f3144e2b58b4a00a06230b15d470c480483d /Doc | |
parent | ec79b1ca21376c000c5514922d2a1b882d273f81 (diff) | |
download | cpython-2df811362213d9e987193772d3bf835a204f2727.zip cpython-2df811362213d9e987193772d3bf835a204f2727.tar.gz cpython-2df811362213d9e987193772d3bf835a204f2727.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 eac4151..2b616ee 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -341,7 +341,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. |