D | operator.c | 231 #define spam1(OP,DOC) {#OP, OP, METH_VARARGS, PyDoc_STR(DOC)}, argument 232 #define spam2(OP,ALTOP,DOC) {#OP, op_##OP, METH_VARARGS, PyDoc_STR(DOC)}, \ argument 233 {#ALTOP, op_##OP, METH_VARARGS, PyDoc_STR(DOC)}, 234 #define spam1o(OP,DOC) {#OP, OP, METH_O, PyDoc_STR(DOC)}, argument 235 #define spam2o(OP,ALTOP,DOC) {#OP, op_##OP, METH_O, PyDoc_STR(DOC)}, \ argument 236 {#ALTOP, op_##OP, METH_O, PyDoc_STR(DOC)},
|