summaryrefslogtreecommitdiffstats
path: root/Doc/extending
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-11-27 15:39:31 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-11-27 15:39:31 (GMT)
commit115b99c22256cb7e106c41d2c0d6de73cc47318c (patch)
treef9eadbcc6a20f0f1a71be1600214d01ce1913926 /Doc/extending
parent565364670a42c10202244d5f0c6ef41c9481dced (diff)
downloadcpython-115b99c22256cb7e106c41d2c0d6de73cc47318c.zip
cpython-115b99c22256cb7e106c41d2c0d6de73cc47318c.tar.gz
cpython-115b99c22256cb7e106c41d2c0d6de73cc47318c.tar.bz2
remove :c:data: which snuck in
Diffstat (limited to 'Doc/extending')
-rw-r--r--Doc/extending/extending.rst2
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);