We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0ce2db commit 3de3972Copy full SHA for 3de3972
Doc/howto/clinic.rst
@@ -1069,16 +1069,17 @@ Currently Argument Clinic supports only a few return converters:
1069
int
1070
unsigned int
1071
long
1072
- unsigned int
+ unsigned long
1073
size_t
1074
Py_ssize_t
1075
float
1076
double
1077
- DecodeFSDefault
+ __init__
1078
1079
None of these take parameters. For the first three, return -1 to indicate
1080
-error. For ``DecodeFSDefault``, the return type is ``const char *``; return a ``NULL``
1081
-pointer to indicate an error.
+error.
+The ``__init__`` converter is a special return converter for ``__init__``
1082
+functions.
1083
1084
To see all the return converters Argument Clinic supports, along with
1085
their parameters (if any),
0 commit comments