Home
last modified time | relevance | path

Searched refs:Py_LE (Results 1 – 21 of 21) sorted by relevance

/third_party/python/Include/
Dobject.h627 #define Py_LE 1 macro
654 case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE; \
/third_party/python/Objects/
Drangeobject.c397 cmp2 = PyObject_RichCompareBool(r->start, ob, Py_LE); in range_contains_long()
401 cmp2 = PyObject_RichCompareBool(ob, r->start, Py_LE); in range_contains_long()
497 case Py_LE: in range_richcompare()
Dsliceobject.c586 case Py_LE: in slice_richcompare()
Dfloatobject.c537 case Py_LE: in float_richcompare()
Dobject.c670 int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE};
Dsetobject.c1782 case Py_LE: in set_richcompare()
Dbytesobject.c1549 case Py_LE: in bytes_richcompare()
Ddictobject.c4324 case Py_LE: in dictview_richcompare()
Dtypeobject.c6869 RICHCMP_WRAPPER(le, Py_LE) in RICHCMP_WRAPPER()
Dunicodeobject.c11646 case Py_LE: in PyUnicode_RichCompare()
/third_party/python/Doc/c-api/
Dobject.rst142 which must be one of :const:`Py_LT`, :const:`Py_LE`, :const:`Py_EQ`,
152 which must be one of :const:`Py_LT`, :const:`Py_LE`, :const:`Py_EQ`,
Dunicode.rst1694 :const:`Py_NE`, :const:`Py_LT`, and :const:`Py_LE`.
Dtypeobj.rst1442 | :const:`Py_LE` | ``<=`` |
/third_party/python/Doc/extending/
Dnewtypes.rst396 where the operator is one of ``Py_EQ``, ``Py_NE``, ``Py_LE``, ``Py_GE``,
420 case Py_LE: c = size1 <= size2; break;
/third_party/python/Modules/
Darraymodule.c723 case Py_LE: cmp = result <= 0; break; in array_richcompare()
763 case Py_LE: cmp = vs <= ws; break; in array_richcompare()
D_operator.c626 return PyObject_RichCompare(a, b, Py_LE); in _operator_le_impl()
D_collectionsmodule.c1467 case Py_LE: cmp = x == NULL; break; /* if v was not longer */ in deque_richcompare()
D_ssl.c4951 case Py_LE: in PySSLSession_richcompare()
/third_party/python/Modules/_decimal/
D_decimal.c4448 case Py_LE: in dec_richcompare()
/third_party/python/Python/
Dcompile.c2614 cmp = Py_LE; in compiler_addcompare()
/third_party/python/Misc/
DHISTORY25420 an integer indicating the opcode, which can be Py_LT, Py_LE, Py_EQ,