Searched refs:PyCMethod_New (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython3/Include/ |
D | methodobject.h | 78 #define PyCFunction_NewEx(ML, SELF, MOD) PyCMethod_New((ML), (SELF), (MOD), NULL) 79 PyAPI_FUNC(PyObject *) PyCMethod_New(PyMethodDef *, PyObject *,
|
/external/python/cpython3/Objects/ |
D | methodobject.c | 41 return PyCMethod_New(ml, self, module, NULL); in PyCFunction_NewEx() 45 PyCMethod_New(PyMethodDef *ml, PyObject *self, PyObject *module, PyTypeObject *cls) in PyCMethod_New() function
|
D | descrobject.c | 133 return PyCMethod_New(descr->d_method, type, NULL, cls); in classmethod_get() 148 return PyCMethod_New(descr->d_method, obj, NULL, descr->d_common.d_type); in method_get()
|
/external/python/cpython3/Doc/c-api/ |
D | structures.rst | 402 .. c:function:: PyObject * PyCMethod_New(PyMethodDef *ml, PyObject *self, PyObject *module, PyTypeO… 429 Equivalent to ``PyCMethod_New(ml, self, module, NULL)``. 434 Equivalent to ``PyCMethod_New(ml, self, NULL, NULL)``.
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 414 PyCMethod_New:PyObject*::+1: 415 PyCMethod_New:PyMethodDef*:ml:: 416 PyCMethod_New:PyObject*:self:+1: 417 PyCMethod_New:PyObject*:module:+1: 418 PyCMethod_New:PyObject*:cls:+1:
|
D | stable_abi.dat | 54 func,PyCMethod_New,3.9,,
|
D | python3.13.abi | 50 …<elf-symbol name='PyCMethod_New' type='func-type' binding='global-binding' visibility='default-vis… 6216 …PyCMethod_New' mangled-name='PyCMethod_New' filepath='./Include/methodobject.h' line='79' column='…
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.10.0a6.rst | 423 :c:func:`PyCMethod_New` is now present in ``python3.lib``.
|
/external/python/cpython3/PC/ |
D | python3dll.c | 146 EXPORT_FUNC(PyCMethod_New)
|
/external/python/cpython3/Misc/ |
D | stable_abi.toml | 2160 [function.PyCMethod_New]
|