Home
last modified time | relevance | path

Searched refs:_PyObject_IsAbstract (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Modules/
D_abc.c342 int is_abstract = _PyObject_IsAbstract(value); in compute_abstract_methods()
391 int is_abstract = _PyObject_IsAbstract(value); in compute_abstract_methods()
/third_party/python/Objects/
Dfuncobject.c872 int res = _PyObject_IsAbstract(cm->cm_callable); in cm_get___isabstractmethod__()
1070 int res = _PyObject_IsAbstract(sm->sm_callable); in sm_get___isabstractmethod__()
Ddescrobject.c1776 int res = _PyObject_IsAbstract(prop->prop_get); in property_get___isabstractmethod__()
1784 res = _PyObject_IsAbstract(prop->prop_set); in property_get___isabstractmethod__()
1792 res = _PyObject_IsAbstract(prop->prop_del); in property_get___isabstractmethod__()
Dobject.c849 _PyObject_IsAbstract(PyObject *obj) in _PyObject_IsAbstract() function
/third_party/python/Include/cpython/
Dobject.h315 PyAPI_FUNC(int) _PyObject_IsAbstract(PyObject *);