Searched refs:Py_RETURN_RICHCOMPARE (Results 1 – 14 of 14) sorted by relevance
/third_party/python/Objects/ |
D | cellobject.c | 103 Py_RETURN_RICHCOMPARE(b == NULL, a == NULL, op); in cell_richcompare()
|
D | bytearrayobject.c | 1051 Py_RETURN_RICHCOMPARE(cmp, 0, op); in bytearray_richcompare() 1054 Py_RETURN_RICHCOMPARE(self_size, other_size, op); in bytearray_richcompare()
|
D | tupleobject.c | 711 Py_RETURN_RICHCOMPARE(vlen, wlen, op); in tuplerichcompare()
|
D | bytesobject.c | 1579 Py_RETURN_RICHCOMPARE(c, 0, op); in bytes_richcompare() 1580 Py_RETURN_RICHCOMPARE(len_a, len_b, op); in bytes_richcompare()
|
D | listobject.c | 2676 Py_RETURN_RICHCOMPARE(Py_SIZE(vl), Py_SIZE(wl), op); in list_richcompare()
|
D | longobject.c | 2912 Py_RETURN_RICHCOMPARE(result, 0, op); in long_richcompare()
|
D | unicodeobject.c | 11666 Py_RETURN_RICHCOMPARE(result, 0, op); in PyUnicode_RichCompare()
|
/third_party/python/Include/ |
D | object.h | 647 #define Py_RETURN_RICHCOMPARE(val1, val2, op) \ macro
|
/third_party/python/Modules/ |
D | selectmodule.c | 1891 Py_RETURN_RICHCOMPARE(result, 0, op); in kqueue_event_richcompare()
|
D | _tkinter.c | 977 Py_RETURN_RICHCOMPARE(result, 0, op); in PyTclObject_richcompare()
|
D | _datetimemodule.c | 1709 Py_RETURN_RICHCOMPARE(diff, 0, op); in diff_to_bool()
|
/third_party/python/Misc/NEWS.d/ |
D | 3.7.0a3.rst | 1602 Add Py_RETURN_RICHCOMPARE macro to reduce boilerplate code in rich
|
/third_party/python/Doc/c-api/ |
D | typeobj.rst | 1455 .. c:macro:: Py_RETURN_RICHCOMPARE(VAL_A, VAL_B, op)
|
/third_party/python/Doc/whatsnew/ |
D | 3.7.rst | 1659 The new :c:macro:`Py_RETURN_RICHCOMPARE` macro eases writing rich
|