Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dobject.h582 #define Py_TPFLAGS_HAVE_RICHCOMPARE (1L<<5) macro
643 Py_TPFLAGS_HAVE_RICHCOMPARE | \
/external/python/cpython2/Doc/c-api/
Dtypeobj.rst436 indicated by the :const:`Py_TPFLAGS_HAVE_RICHCOMPARE` flag bit) and have *NULL*
491 .. data:: Py_TPFLAGS_HAVE_RICHCOMPARE
558 :const:`Py_TPFLAGS_HAVE_RICHCOMPARE` is set.
567 :const:`Py_TPFLAGS_HAVE_RICHCOMPARE`, :const:`Py_TPFLAGS_HAVE_WEAKREFS`,
580 :const:`Py_TPFLAGS_HAVE_RICHCOMPARE` flag bit is set.
620 the subtype *and* the subtype has the :const:`Py_TPFLAGS_HAVE_RICHCOMPARE` flag
676 the subtype *and* the subtype has the :const:`Py_TPFLAGS_HAVE_RICHCOMPARE` flag
/external/python/cpython2/Objects/
Dweakrefobject.c367 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC | Py_TPFLAGS_HAVE_RICHCOMPARE
Dobject.c594 #define RICHCOMPARE(t) (PyType_HasFeature((t), Py_TPFLAGS_HAVE_RICHCOMPARE) \
Dlistobject.c1908 Py_TPFLAGS_HAVE_RICHCOMPARE, /* tp_flags */
Dtypeobject.c3784 (type->tp_flags & Py_TPFLAGS_HAVE_RICHCOMPARE/*GC slots exist*/) &&
3993 if (type->tp_flags & base->tp_flags & Py_TPFLAGS_HAVE_RICHCOMPARE) {