Home
last modified time | relevance | path

Searched refs:PyDescr_NewWrapper (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Include/
Ddescrobject.h81 PyAPI_FUNC(PyObject *) PyDescr_NewWrapper(PyTypeObject *,
/external/python/cpython2/Doc/c-api/
Ddescriptor.rst34 .. c:function:: PyObject* PyDescr_NewWrapper(PyTypeObject *type, struct wrapperbase *wrapper, void …
/external/python/cpython3/Doc/c-api/
Ddescriptor.rst27 .. c:function:: PyObject* PyDescr_NewWrapper(PyTypeObject *type, struct wrapperbase *wrapper, void …
/external/python/cpython3/Include/
Ddescrobject.h94 PyAPI_FUNC(PyObject *) PyDescr_NewWrapper(PyTypeObject *,
/external/python/cpython2/Doc/data/
Drefcounts.dat196 PyDescr_NewWrapper:PyObject*::+1:
197 PyDescr_NewWrapper:PyTypeObject*:type::
198 PyDescr_NewWrapper:struct wrapperbase*:base::
199 PyDescr_NewWrapper:void*:wrapped::
/external/python/cpython3/Doc/data/
Drefcounts.dat485 PyDescr_NewWrapper:PyObject*::+1:
486 PyDescr_NewWrapper:PyTypeObject*:type:+1:
487 PyDescr_NewWrapper:struct wrapperbase*:base::
488 PyDescr_NewWrapper:void*:wrapped::
/external/python/cpython2/PC/os2emx/
Dpython27.def261 "PyDescr_NewWrapper"
/external/python/cpython2/Objects/
Ddescrobject.c676 PyDescr_NewWrapper(PyTypeObject *type, struct wrapperbase *base, void *wrapped) in PyDescr_NewWrapper() function
Dtypeobject.c6591 descr = PyDescr_NewWrapper(type, p, *ptr);
/external/python/cpython3/Objects/
Ddescrobject.c985 PyDescr_NewWrapper(PyTypeObject *type, struct wrapperbase *base, void *wrapped) in PyDescr_NewWrapper() function
Dtypeobject.c7831 descr = PyDescr_NewWrapper(type, p, *ptr); in add_operators()