@@ -335,7 +335,7 @@ Other objects
335
335
status = converter(object, address);
336
336
337
337
where *object * is the Python object to be converted and *address * is the
338
- :c:type: `void* ` argument that was passed to the :c:func: ` PyArg_Parse\* ` function.
338
+ :c:type: `void* ` argument that was passed to the `` PyArg_Parse* ` ` function.
339
339
The returned *status * should be ``1 `` for a successful conversion and ``0 `` if
340
340
the conversion has failed. When the conversion fails, the *converter * function
341
341
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.
409
409
410
410
For the conversion to succeed, the *arg * object must match the format
411
411
and 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
413
413
false 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
415
415
of the format units, the variables at the addresses corresponding to that
416
416
and the following format units are left untouched.
417
417
@@ -518,7 +518,7 @@ Building values
518
518
.. c :function :: PyObject* Py_BuildValue (const char *format, ...)
519
519
520
520
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
522
522
the value or ``NULL `` in the case of an error; an exception will be raised if
523
523
``NULL `` is returned.
524
524
0 commit comments