diff options
author | Georg Brandl <georg@python.org> | 2010-03-12 10:02:03 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-03-12 10:02:03 (GMT) |
commit | f6d3674599cb1f03da78aaf8800def5086bb9879 (patch) | |
tree | dd416334149738acef8848dfa3ce59d866bd4bb7 /Doc/library/sys.rst | |
parent | 554272743a597cfde468fbc0dd200859a6648b56 (diff) | |
download | cpython-f6d3674599cb1f03da78aaf8800def5086bb9879.zip cpython-f6d3674599cb1f03da78aaf8800def5086bb9879.tar.gz cpython-f6d3674599cb1f03da78aaf8800def5086bb9879.tar.bz2 |
Fix warnings from "make check".
Diffstat (limited to 'Doc/library/sys.rst')
-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 b535c22..807245f 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -417,7 +417,7 @@ always available. specific. If given, *default* will be returned if the object does not provide means to - retrieve the size. Otherwise a `TypeError` will be raised. + retrieve the size. Otherwise a :exc:`TypeError` will be raised. :func:`getsizeof` calls the object's ``__sizeof__`` method and adds an additional garbage collector overhead if the object is managed by the garbage |