@@ -298,7 +298,7 @@ Other objects
298
298
status = converter(object, address);
299
299
300
300
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.
302
302
The returned *status * should be ``1 `` for a successful conversion and ``0 `` if
303
303
the conversion has failed. When the conversion fails, the *converter * function
304
304
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.
372
372
373
373
For the conversion to succeed, the *arg * object must match the format
374
374
and 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
376
376
false 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
378
378
of the format units, the variables at the addresses corresponding to that
379
379
and the following format units are left untouched.
380
380
@@ -481,7 +481,7 @@ Building values
481
481
.. c :function :: PyObject* Py_BuildValue (const char *format, ...)
482
482
483
483
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
485
485
the value or ``NULL `` in the case of an error; an exception will be raised if
486
486
``NULL `` is returned.
487
487
0 commit comments