Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dcellobject.c103 Py_RETURN_RICHCOMPARE(b == NULL, a == NULL, op); in cell_richcompare()
Dbytearrayobject.c1051 Py_RETURN_RICHCOMPARE(cmp, 0, op); in bytearray_richcompare()
1054 Py_RETURN_RICHCOMPARE(self_size, other_size, op); in bytearray_richcompare()
Dtupleobject.c711 Py_RETURN_RICHCOMPARE(vlen, wlen, op); in tuplerichcompare()
Dbytesobject.c1579 Py_RETURN_RICHCOMPARE(c, 0, op); in bytes_richcompare()
1580 Py_RETURN_RICHCOMPARE(len_a, len_b, op); in bytes_richcompare()
Dlistobject.c2676 Py_RETURN_RICHCOMPARE(Py_SIZE(vl), Py_SIZE(wl), op); in list_richcompare()
Dlongobject.c2912 Py_RETURN_RICHCOMPARE(result, 0, op); in long_richcompare()
Dunicodeobject.c11666 Py_RETURN_RICHCOMPARE(result, 0, op); in PyUnicode_RichCompare()
/third_party/python/Include/
Dobject.h647 #define Py_RETURN_RICHCOMPARE(val1, val2, op) \ macro
/third_party/python/Modules/
Dselectmodule.c1891 Py_RETURN_RICHCOMPARE(result, 0, op); in kqueue_event_richcompare()
D_tkinter.c977 Py_RETURN_RICHCOMPARE(result, 0, op); in PyTclObject_richcompare()
D_datetimemodule.c1709 Py_RETURN_RICHCOMPARE(diff, 0, op); in diff_to_bool()
/third_party/python/Misc/NEWS.d/
D3.7.0a3.rst1602 Add Py_RETURN_RICHCOMPARE macro to reduce boilerplate code in rich
/third_party/python/Doc/c-api/
Dtypeobj.rst1455 .. c:macro:: Py_RETURN_RICHCOMPARE(VAL_A, VAL_B, op)
/third_party/python/Doc/whatsnew/
D3.7.rst1659 The new :c:macro:`Py_RETURN_RICHCOMPARE` macro eases writing rich