Home
last modified time | relevance | path

Searched refs:CConverter (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Tools/clinic/
Dclinic.py2388 class CConverter(metaclass=CConverterAutoRegister): class
2735 class bool_converter(CConverter):
2774 class defining_class_converter(CConverter):
2793 class char_converter(CConverter):
2827 class unsigned_char_converter(CConverter):
2886 class short_converter(CConverter):
2922 class unsigned_short_converter(CConverter):
2949 class int_converter(CConverter):
2994 class unsigned_int_converter(CConverter):
3020 class long_converter(CConverter):
[all …]
/external/python/cpython3/Doc/howto/
Dclinic.rst1214 A converter is simply a Python class that inherits from ``CConverter``.
1225 You shouldn't subclass ``CConverter.__init__``. Instead, you should
1232 There are some additional members of ``CConverter`` you may wish
1283 class ssize_t_converter(CConverter):
1299 source tree; grep the C files for the string ``CConverter``.