Home | History | Annotate | Download | only in Modules

Lines Matching full:spam1

13 #define spam1(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a1) { \
76 spam1(op_neg , PyNumber_Negative)
77 spam1(op_pos , PyNumber_Positive)
78 spam1(op_abs , PyNumber_Absolute)
79 spam1(op_inv , PyNumber_Invert)
80 spam1(op_invert , PyNumber_Invert)
160 #undef spam1
326 #define spam1(OP,DOC) {#OP, OP, METH_VARARGS, PyDoc_STR(DOC)},
337 spam1(indexOf,
339 spam1(countOf,
342 spam1(is_, "is_(a, b) -- Same as a is b.")
343 spam1(is_not, "is_not(a, b) -- Same as a is not b.")