@@ -298,7 +298,7 @@ Other objects
298298 status = converter(object, address);
299299
300300 where *object * is the Python object to be converted and *address * is the
301- :c:type: `void* ` argument that was passed to the :c:func: ` PyArg_Parse\* ` function.
301+ :c:type: `void* ` argument that was passed to the `` PyArg_Parse* ` ` function.
302302 The returned *status * should be ``1 `` for a successful conversion and ``0 `` if
303303 the conversion has failed. When the conversion fails, the *converter * function
304304 should raise an exception and leave the content of *address * unmodified.
@@ -372,9 +372,9 @@ what is specified for the corresponding format unit in that case.
372372
373373For the conversion to succeed, the *arg * object must match the format
374374and the format must be exhausted. On success, the
375- :c:func: ` PyArg_Parse\* ` functions return true, otherwise they return
375+ `` PyArg_Parse* ` ` functions return true, otherwise they return
376376false and raise an appropriate exception. When the
377- :c:func: ` PyArg_Parse\* ` functions fail due to conversion failure in one
377+ `` PyArg_Parse* ` ` functions fail due to conversion failure in one
378378of the format units, the variables at the addresses corresponding to that
379379and the following format units are left untouched.
380380
@@ -481,7 +481,7 @@ Building values
481481.. c :function :: PyObject* Py_BuildValue (const char *format, ...)
482482
483483 Create a new value based on a format string similar to those accepted by the
484- :c:func: ` PyArg_Parse\* ` family of functions and a sequence of values. Returns
484+ `` PyArg_Parse* ` ` family of functions and a sequence of values. Returns
485485 the value or ``NULL `` in the case of an error; an exception will be raised if
486486 ``NULL `` is returned.
487487
0 commit comments