File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -742,7 +742,7 @@ See also :pep:`573`.
742742How to write a custom converter
743743-------------------------------
744744
745- A converter is a Python class that inherits from :py:class: `CConverter `.
745+ A converter is a Python class that inherits from :py:class: `~clinic. CConverter `.
746746The main purpose of a custom converter, is for parameters parsed with
747747the ``O& `` format unit --- parsing such a parameter means calling
748748a :c:func: `PyArg_ParseTuple ` "converter function".
@@ -758,8 +758,8 @@ write a :py:meth:`!converter_init` method.
758758After *self *, all additional parameters **must ** be keyword-only.
759759Any arguments passed to the converter in Argument Clinic
760760will be passed along to your :py:meth: `!converter_init ` method.
761- See :py:class: `CConverter ` for a list of members you may wish to specify in
762- your subclass.
761+ See :py:class: `~clinic. CConverter ` for a list of members you may wish to specify
762+ in your subclass.
763763
764764Here's the simplest example of a custom converter, from :cpy-file: `Modules/zlibmodule.c `::
765765
You can’t perform that action at this time.
0 commit comments