Home
last modified time | relevance | path

Searched refs:Py_TPFLAGS_HAVE_CLASS (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Modules/_ctypes/
Dstgdict.c160 if (!PyType_HasFeature(type, Py_TPFLAGS_HAVE_CLASS)) in PyType_stgdict()
176 if (!PyType_HasFeature(type, Py_TPFLAGS_HAVE_CLASS)) in PyObject_stgdict()
/external/python/cpython2/Include/
Dobject.h591 #define Py_TPFLAGS_HAVE_CLASS (1L<<8) macro
646 Py_TPFLAGS_HAVE_CLASS | \
/external/python/cpython2/Objects/
Dobject.c1282 if (!(tp->tp_flags & Py_TPFLAGS_HAVE_CLASS)) in _PyObject_GetDictPtr()
1396 PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) { in _PyObject_GenericGetAttrWithDict()
1504 PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) { in _PyObject_GenericSetAttrWithDict()
Dclassobject.c17 (PyType_HasFeature(t, Py_TPFLAGS_HAVE_CLASS) ? (t)->tp_descr_get : NULL)
2327 if (PyType_HasFeature(tp, Py_TPFLAGS_HAVE_CLASS)) { in instancemethod_getattro()
Dtypeobject.c763 if (PyType_HasFeature(type, Py_TPFLAGS_HAVE_CLASS) && in type_call()
1170 if (!(a->tp_flags & Py_TPFLAGS_HAVE_CLASS)) in PyType_IsSubtype()
3792 if (type->tp_flags & base->tp_flags & Py_TPFLAGS_HAVE_CLASS) {
3821 if (type->tp_flags & base->tp_flags & Py_TPFLAGS_HAVE_CLASS) {
4029 if (type->tp_flags & base->tp_flags & Py_TPFLAGS_HAVE_CLASS) {
/external/python/cpython2/Doc/c-api/
Dtypeobj.rst510 .. data:: Py_TPFLAGS_HAVE_CLASS
568 :const:`Py_TPFLAGS_HAVE_ITER`, and :const:`Py_TPFLAGS_HAVE_CLASS`.
789 :const:`Py_TPFLAGS_HAVE_CLASS` flag bit is set.