Home
last modified time | relevance | path

Searched refs:Py_RETURN_RICHCOMPARE (Results 1 – 16 of 16) sorted by relevance

/external/python/cpython3/Objects/
Dcellobject.c73 Py_RETURN_RICHCOMPARE(b == NULL, a == NULL, op); in cell_richcompare()
Dbytearrayobject.c1062 Py_RETURN_RICHCOMPARE(cmp, 0, op); in bytearray_richcompare()
1065 Py_RETURN_RICHCOMPARE(self_size, other_size, op); in bytearray_richcompare()
Dtupleobject.c642 Py_RETURN_RICHCOMPARE(vlen, wlen, op); in tuplerichcompare()
Dbytesobject.c1644 Py_RETURN_RICHCOMPARE(c, 0, op); in bytes_richcompare()
1645 Py_RETURN_RICHCOMPARE(len_a, len_b, op); in bytes_richcompare()
Ddescrobject.c1055 Py_RETURN_RICHCOMPARE(a_descr, b_descr, op); in wrapper_richcompare()
Dlistobject.c2612 Py_RETURN_RICHCOMPARE(Py_SIZE(vl), Py_SIZE(wl), op); in list_richcompare()
Dlongobject.c2931 Py_RETURN_RICHCOMPARE(result, 0, op); in long_richcompare()
Dunicodeobject.c11172 Py_RETURN_RICHCOMPARE(result, 0, op); in PyUnicode_RichCompare()
/external/python/cpython3/Include/
Dobject.h950 #define Py_RETURN_RICHCOMPARE(val1, val2, op) \ macro
/external/python/cpython3/Modules/
Dparsermodule.c325 Py_RETURN_RICHCOMPARE(result, 0, op); in parser_richcompare()
Dselectmodule.c1935 Py_RETURN_RICHCOMPARE(result, 0, op); in kqueue_event_richcompare()
D_tkinter.c889 Py_RETURN_RICHCOMPARE(result, 0, op); in PyTclObject_richcompare()
D_datetimemodule.c1700 Py_RETURN_RICHCOMPARE(diff, 0, op); in diff_to_bool()
/external/python/cpython3/Misc/NEWS.d/
D3.7.0a3.rst1614 Add Py_RETURN_RICHCOMPARE macro to reduce boilerplate code in rich
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst628 .. c:function:: PyObject *Py_RETURN_RICHCOMPARE(VAL_A, VAL_B, int op)
/external/python/cpython3/Doc/whatsnew/
D3.7.rst1651 The new :c:macro:`Py_RETURN_RICHCOMPARE` macro eases writing rich