Home | History | Annotate | Download | only in Objects

Lines Matching defs:ISLT

989  * NULL (use the ISLT macro if you don't know, or call PyObject_RichCompareBool
994 islt(PyObject *x, PyObject *y, PyObject *compare)
1028 * islt. This avoids a layer of function call in the usual case, and
1032 #define ISLT(X, Y, COMPARE) ((COMPARE) == NULL ? \
1034 islt(X, Y, COMPARE))
1040 #define IFLT(X, Y) if ((k = ISLT(X, Y, compare)) < 0) goto fail; \
1050 If islt() complains return -1, else 0.
1495 k = ISLT(*pb, *pa, compare);
1632 k = ISLT(*pb, *pa, compare);
2216 #undef ISLT