diff options
author | Georg Brandl <georg@python.org> | 2009-10-27 14:37:48 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-10-27 14:37:48 (GMT) |
commit | 4ae4f876a2f48e7706c874e267285e88eb955723 (patch) | |
tree | 2da9fa31295d283b4b0ddfe232c476cc82a51762 /Doc/library/sys.rst | |
parent | 0dfdf006a6e421cf9a8155b6d20e6e39c6387e92 (diff) | |
download | cpython-4ae4f876a2f48e7706c874e267285e88eb955723.zip cpython-4ae4f876a2f48e7706c874e267285e88eb955723.tar.gz cpython-4ae4f876a2f48e7706c874e267285e88eb955723.tar.bz2 |
Merged revisions 74209 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74209 | georg.brandl | 2009-07-26 16:37:28 +0200 (So, 26 Jul 2009) | 1 line
builtin -> built-in.
........
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 797583d..13ad48a 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -795,7 +795,7 @@ always available. ``'c_call'`` A C function is about to be called. This may be an extension function or - a builtin. *arg* is the C function object. + a built-in. *arg* is the C function object. ``'c_return'`` A C function has returned. *arg* is ``None``. |