Home
last modified time | relevance | path

Searched refs:_PyObject_RealIsSubclass (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Objects/
Ddescrobject.c227 if (!_PyObject_RealIsSubclass((PyObject *)Py_TYPE(self), in methoddescr_call()
323 if (!_PyObject_RealIsSubclass((PyObject *)Py_TYPE(self), in wrapperdescr_call()
1102 assert(_PyObject_RealIsSubclass((PyObject *)Py_TYPE(self), in PyWrapper_New()
Dabstract.c3075 _PyObject_RealIsSubclass(PyObject *derived, PyObject *cls) function
Dtypeobject.c629 switch (_PyObject_RealIsSubclass(inst, type)) { in type___subclasscheck__()
/external/python/cpython3/Include/cpython/
Dabstract.h367 PyAPI_FUNC(int) _PyObject_RealIsSubclass(PyObject *derived, PyObject *cls);
/external/python/cpython2/Include/
Dabstract.h1383 PyAPI_FUNC(int) _PyObject_RealIsSubclass(PyObject *derived, PyObject *cls);
/external/python/cpython3/Objects/
Ddescrobject.c538 if (!_PyObject_RealIsSubclass((PyObject *)Py_TYPE(self), in wrapperdescr_call()
1440 assert(_PyObject_RealIsSubclass((PyObject *)Py_TYPE(self), in PyWrapper_New()
Dabstract.c2643 _PyObject_RealIsSubclass(PyObject *derived, PyObject *cls) in _PyObject_RealIsSubclass() function
Dexceptions.c2533 assert(_PyObject_RealIsSubclass(PyExc_ ## TYPE, PyExc_OSError)); \ in _PyExc_Init()
Dtypeobject.c926 return _PyObject_RealIsSubclass(subclass, (PyObject *)self); in type___subclasscheck___impl()