Home | History | Annotate | Download | only in Modules

Lines Matching full:spam1

13 #define spam1(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a1) { \
97 spam1(op_neg , PyNumber_Negative)
98 spam1(op_pos , PyNumber_Positive)
99 spam1(op_abs , PyNumber_Absolute)
100 spam1(op_inv , PyNumber_Invert)
101 spam1(op_invert , PyNumber_Invert)
227 #undef spam1
231 #define spam1(OP,DOC) {#OP, OP, METH_VARARGS, PyDoc_STR(DOC)},
376 spam1(sequenceIncludes,
378 spam1(indexOf,
380 spam1(countOf,
385 spam1(is_, "is_(a, b) -- Same as a is b.")
386 spam1(is_not, "is_not(a, b) -- Same as a is not b.")