remove :c:data: which snuck in

This commit is contained in:
Benjamin Peterson 2010-11-27 15:39:31 +00:00
parent 565364670a
commit 115b99c222

View file

@ -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);