@@ -335,7 +335,7 @@ Other objects
335335      status = converter(object, address); 
336336
337337   where *object * is the Python object to be converted and *address * is the
338-    :c:expr : `void* ` argument that was passed to the ``PyArg_Parse* `` function.
338+    :c:type : `void* ` argument that was passed to the ``PyArg_Parse* `` function.
339339   The returned *status * should be ``1 `` for a successful conversion and ``0 `` if
340340   the conversion has failed.  When the conversion fails, the *converter * function
341341   should raise an exception and leave the content of *address * unmodified.
@@ -409,9 +409,9 @@ what is specified for the corresponding format unit in that case.
409409
410410For the conversion to succeed, the *arg * object must match the format
411411and the format must be exhausted.  On success, the
412- :c:func: ` PyArg_Parse\*  ` functions return true, otherwise they return
412+ `` PyArg_Parse*  ` ` functions return true, otherwise they return
413413false and raise an appropriate exception. When the
414- :c:func: ` PyArg_Parse\*  ` functions fail due to conversion failure in one
414+ `` PyArg_Parse*  ` ` functions fail due to conversion failure in one
415415of the format units, the variables at the addresses corresponding to that
416416and the following format units are left untouched.
417417
@@ -518,7 +518,7 @@ Building values
518518.. c :function :: PyObject* Py_BuildValue (const char *format, ...)   
519519
520520   Create a new value based on a format string similar to those accepted by the 
521-    :c:func: ` PyArg_Parse\*  ` family of functions and a sequence of values.  Returns 
521+    `` PyArg_Parse*  ` ` family of functions and a sequence of values.  Returns 
522522   the value or ``NULL `` in the case of an error; an exception will be raised if 
523523   ``NULL `` is returned. 
524524
0 commit comments