diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-11-27 15:39:31 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-11-27 15:39:31 (GMT) |
commit | 115b99c22256cb7e106c41d2c0d6de73cc47318c (patch) | |
tree | f9eadbcc6a20f0f1a71be1600214d01ce1913926 /Doc | |
parent | 565364670a42c10202244d5f0c6ef41c9481dced (diff) | |
download | cpython-115b99c22256cb7e106c41d2c0d6de73cc47318c.zip cpython-115b99c22256cb7e106c41d2c0d6de73cc47318c.tar.gz cpython-115b99c22256cb7e106c41d2c0d6de73cc47318c.tar.bz2 |
remove :c:data: which snuck in
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/extending/extending.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/extending/extending.rst b/Doc/extending/extending.rst index 83fa520..68dc9d6 100644 --- a/Doc/extending/extending.rst +++ b/Doc/extending/extending.rst @@ -266,7 +266,7 @@ the string we just got from :cfunc:`PyArg_ParseTuple`:: sts = system(command); -Our :func:`spam.system` function must return the value of :c:data:`sts` as a +Our :func:`spam.system` function must return the value of :cdata:`sts` as a Python object. This is done using the function :cfunc:`PyLong_FromLong`. :: return PyLong_FromLong(sts); |