summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2009-09-22 20:12:41 (GMT)
committerBrett Cannon <bcannon@gmail.com>2009-09-22 20:12:41 (GMT)
commit60d6b35af96109af36a6f637d071c29a47b3213f (patch)
treed7491a9913f85dfa5e9bf5b3e359f9e27c85de37 /Doc
parent66846897a5e026928502a1ef452bc4aa0c039105 (diff)
downloadcpython-60d6b35af96109af36a6f637d071c29a47b3213f.zip
cpython-60d6b35af96109af36a6f637d071c29a47b3213f.tar.gz
cpython-60d6b35af96109af36a6f637d071c29a47b3213f.tar.bz2
Merged revisions 75026 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r75026 | brett.cannon | 2009-09-22 13:08:09 -0700 (Tue, 22 Sep 2009) | 9 lines 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.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst
index a61bfd8..e895e4c 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.