Home
last modified time | relevance | path

Searched refs:PyDescr_NewMethod (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython2/Include/
Ddescrobject.h75 PyAPI_FUNC(PyObject *) PyDescr_NewMethod(PyTypeObject *, PyMethodDef *);
/external/python/cpython3/Doc/c-api/
Ddescriptor.rst24 .. c:function:: PyObject* PyDescr_NewMethod(PyTypeObject *type, struct PyMethodDef *meth)
/external/python/cpython2/Doc/c-api/
Ddescriptor.rst29 .. c:function:: PyObject* PyDescr_NewMethod(PyTypeObject *type, struct PyMethodDef *meth)
/external/python/cpython3/Include/
Ddescrobject.h85 PyAPI_FUNC(PyObject *) PyDescr_NewMethod(PyTypeObject *, PyMethodDef *);
/external/python/cpython3/PC/
Dpython3.def86 PyDescr_NewMethod=python37.PyDescr_NewMethod
/external/python/cpython2/Doc/data/
Drefcounts.dat192 PyDescr_NewMethod:PyObject*::+1:
193 PyDescr_NewMethod:PyTypeObject*:type::
194 PyDescr_NewMethod:PyMethodDef*:meth::
/external/python/cpython2/PC/os2emx/
Dpython27.def257 "PyDescr_NewMethod"
/external/python/cpython2/Objects/
Ddescrobject.c628 PyDescr_NewMethod(PyTypeObject *type, PyMethodDef *method) in PyDescr_NewMethod() function
Dtypeobject.c3753 descr = PyDescr_NewMethod(type, meth);
/external/python/cpython3/Doc/data/
Drefcounts.dat453 PyDescr_NewMethod:PyObject*::+1:
454 PyDescr_NewMethod:PyTypeObject*:type:+1:
455 PyDescr_NewMethod:PyMethodDef*:meth::
/external/python/cpython3/Objects/
Ddescrobject.c741 PyDescr_NewMethod(PyTypeObject *type, PyMethodDef *method) in PyDescr_NewMethod() function
Dtypeobject.c4801 descr = PyDescr_NewMethod(type, meth); in add_methods()