Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1 | |
| 2 | #include "Python.h" |
| 3 | |
| 4 | PyDoc_STRVAR(operator_doc, |
| 5 | "Operator interface.\n\ |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 6 | \n\ |
| 7 | This module exports a set of functions implemented in C corresponding\n\ |
| 8 | to the intrinsic operators of Python. For example, operator.add(x, y)\n\ |
| 9 | is equivalent to the expression x+y. The function names are those\n\ |
Georg Brandl | efc2858 | 2009-11-04 07:38:12 +0000 | [diff] [blame] | 10 | used for special methods; variants without leading and trailing\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11 | '__' are also provided for convenience."); |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 12 | |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 13 | #define spam1(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a1) { \ |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 14 | return AOP(a1); } |
| 15 | |
Fred Drake | 5639ba4 | 2000-07-08 04:12:08 +0000 | [diff] [blame] | 16 | #define spam2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 17 | PyObject *a1, *a2; \ |
Raymond Hettinger | ea3fdf4 | 2002-12-29 16:33:45 +0000 | [diff] [blame] | 18 | if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \ |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 19 | return AOP(a1,a2); } |
| 20 | |
Fred Drake | 5639ba4 | 2000-07-08 04:12:08 +0000 | [diff] [blame] | 21 | #define spamoi(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 22 | PyObject *a1; int a2; \ |
Fred Drake | ea4d3f0 | 2000-09-17 16:09:27 +0000 | [diff] [blame] | 23 | if(! PyArg_ParseTuple(a,"Oi:" #OP,&a1,&a2)) return NULL; \ |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 24 | return AOP(a1,a2); } |
| 25 | |
Fred Drake | 5639ba4 | 2000-07-08 04:12:08 +0000 | [diff] [blame] | 26 | #define spam2n(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 27 | PyObject *a1, *a2; \ |
Raymond Hettinger | ea3fdf4 | 2002-12-29 16:33:45 +0000 | [diff] [blame] | 28 | if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \ |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 29 | if(-1 == AOP(a1,a2)) return NULL; \ |
| 30 | Py_INCREF(Py_None); \ |
| 31 | return Py_None; } |
| 32 | |
Fred Drake | 5639ba4 | 2000-07-08 04:12:08 +0000 | [diff] [blame] | 33 | #define spam3n(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 34 | PyObject *a1, *a2, *a3; \ |
Raymond Hettinger | ea3fdf4 | 2002-12-29 16:33:45 +0000 | [diff] [blame] | 35 | if(! PyArg_UnpackTuple(a,#OP,3,3,&a1,&a2,&a3)) return NULL; \ |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 36 | if(-1 == AOP(a1,a2,a3)) return NULL; \ |
| 37 | Py_INCREF(Py_None); \ |
| 38 | return Py_None; } |
| 39 | |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 40 | #define spami(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a1) { \ |
| 41 | long r; \ |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 42 | if(-1 == (r=AOP(a1))) return NULL; \ |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 43 | return PyBool_FromLong(r); } |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 44 | |
Fred Drake | 5639ba4 | 2000-07-08 04:12:08 +0000 | [diff] [blame] | 45 | #define spami2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 46 | PyObject *a1, *a2; long r; \ |
Raymond Hettinger | ea3fdf4 | 2002-12-29 16:33:45 +0000 | [diff] [blame] | 47 | if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \ |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 48 | if(-1 == (r=AOP(a1,a2))) return NULL; \ |
| 49 | return PyInt_FromLong(r); } |
| 50 | |
Martin v. Löwis | 26fd960 | 2006-04-22 11:15:41 +0000 | [diff] [blame] | 51 | #define spamn2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ |
| 52 | PyObject *a1, *a2; Py_ssize_t r; \ |
| 53 | if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \ |
| 54 | if(-1 == (r=AOP(a1,a2))) return NULL; \ |
| 55 | return PyInt_FromSsize_t(r); } |
| 56 | |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 57 | #define spami2b(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \ |
| 58 | PyObject *a1, *a2; long r; \ |
Raymond Hettinger | ea3fdf4 | 2002-12-29 16:33:45 +0000 | [diff] [blame] | 59 | if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \ |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 60 | if(-1 == (r=AOP(a1,a2))) return NULL; \ |
| 61 | return PyBool_FromLong(r); } |
| 62 | |
Fred Drake | 428e75f | 2001-08-09 20:14:34 +0000 | [diff] [blame] | 63 | #define spamrc(OP,A) static PyObject *OP(PyObject *s, PyObject *a) { \ |
| 64 | PyObject *a1, *a2; \ |
Raymond Hettinger | ea3fdf4 | 2002-12-29 16:33:45 +0000 | [diff] [blame] | 65 | if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \ |
Fred Drake | 428e75f | 2001-08-09 20:14:34 +0000 | [diff] [blame] | 66 | return PyObject_RichCompare(a1,a2,A); } |
| 67 | |
Alexandre Vassalotti | 0fe7991 | 2009-07-05 04:22:40 +0000 | [diff] [blame] | 68 | /* Deprecated operators that need warnings. */ |
| 69 | static int |
| 70 | op_isCallable(PyObject *x) |
| 71 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 72 | if (PyErr_WarnPy3k("operator.isCallable() is not supported in 3.x. " |
| 73 | "Use hasattr(obj, '__call__').", 1) < 0) |
| 74 | return -1; |
| 75 | return PyCallable_Check(x); |
Alexandre Vassalotti | 0fe7991 | 2009-07-05 04:22:40 +0000 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | static int |
| 79 | op_sequenceIncludes(PyObject *seq, PyObject* ob) |
| 80 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 81 | if (PyErr_WarnPy3k("operator.sequenceIncludes() is not supported " |
| 82 | "in 3.x. Use operator.contains().", 1) < 0) |
| 83 | return -1; |
| 84 | return PySequence_Contains(seq, ob); |
Alexandre Vassalotti | 0fe7991 | 2009-07-05 04:22:40 +0000 | [diff] [blame] | 85 | } |
| 86 | |
| 87 | spami(isCallable , op_isCallable) |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 88 | spami(isNumberType , PyNumber_Check) |
| 89 | spami(truth , PyObject_IsTrue) |
Guido van Rossum | c9fb47e | 1996-08-21 17:40:51 +0000 | [diff] [blame] | 90 | spam2(op_add , PyNumber_Add) |
| 91 | spam2(op_sub , PyNumber_Subtract) |
| 92 | spam2(op_mul , PyNumber_Multiply) |
| 93 | spam2(op_div , PyNumber_Divide) |
Fred Drake | 428e75f | 2001-08-09 20:14:34 +0000 | [diff] [blame] | 94 | spam2(op_floordiv , PyNumber_FloorDivide) |
| 95 | spam2(op_truediv , PyNumber_TrueDivide) |
Guido van Rossum | c9fb47e | 1996-08-21 17:40:51 +0000 | [diff] [blame] | 96 | spam2(op_mod , PyNumber_Remainder) |
| 97 | spam1(op_neg , PyNumber_Negative) |
| 98 | spam1(op_pos , PyNumber_Positive) |
| 99 | spam1(op_abs , PyNumber_Absolute) |
| 100 | spam1(op_inv , PyNumber_Invert) |
Fred Drake | ea4d3f0 | 2000-09-17 16:09:27 +0000 | [diff] [blame] | 101 | spam1(op_invert , PyNumber_Invert) |
Guido van Rossum | c9fb47e | 1996-08-21 17:40:51 +0000 | [diff] [blame] | 102 | spam2(op_lshift , PyNumber_Lshift) |
| 103 | spam2(op_rshift , PyNumber_Rshift) |
Guido van Rossum | 99c185e | 1998-04-09 17:54:26 +0000 | [diff] [blame] | 104 | spami(op_not_ , PyObject_Not) |
Guido van Rossum | c9fb47e | 1996-08-21 17:40:51 +0000 | [diff] [blame] | 105 | spam2(op_and_ , PyNumber_And) |
| 106 | spam2(op_xor , PyNumber_Xor) |
| 107 | spam2(op_or_ , PyNumber_Or) |
Armin Rigo | f5bd3b4 | 2005-12-29 16:50:42 +0000 | [diff] [blame] | 108 | spam2(op_iadd , PyNumber_InPlaceAdd) |
| 109 | spam2(op_isub , PyNumber_InPlaceSubtract) |
| 110 | spam2(op_imul , PyNumber_InPlaceMultiply) |
| 111 | spam2(op_idiv , PyNumber_InPlaceDivide) |
| 112 | spam2(op_ifloordiv , PyNumber_InPlaceFloorDivide) |
| 113 | spam2(op_itruediv , PyNumber_InPlaceTrueDivide) |
| 114 | spam2(op_imod , PyNumber_InPlaceRemainder) |
| 115 | spam2(op_ilshift , PyNumber_InPlaceLshift) |
| 116 | spam2(op_irshift , PyNumber_InPlaceRshift) |
| 117 | spam2(op_iand , PyNumber_InPlaceAnd) |
| 118 | spam2(op_ixor , PyNumber_InPlaceXor) |
| 119 | spam2(op_ior , PyNumber_InPlaceOr) |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 120 | spami(isSequenceType , PySequence_Check) |
Guido van Rossum | c9fb47e | 1996-08-21 17:40:51 +0000 | [diff] [blame] | 121 | spam2(op_concat , PySequence_Concat) |
| 122 | spamoi(op_repeat , PySequence_Repeat) |
Armin Rigo | f5bd3b4 | 2005-12-29 16:50:42 +0000 | [diff] [blame] | 123 | spam2(op_iconcat , PySequence_InPlaceConcat) |
| 124 | spamoi(op_irepeat , PySequence_InPlaceRepeat) |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 125 | spami2b(op_contains , PySequence_Contains) |
Alexandre Vassalotti | 0fe7991 | 2009-07-05 04:22:40 +0000 | [diff] [blame] | 126 | spami2b(sequenceIncludes, op_sequenceIncludes) |
Martin v. Löwis | 26fd960 | 2006-04-22 11:15:41 +0000 | [diff] [blame] | 127 | spamn2(indexOf , PySequence_Index) |
| 128 | spamn2(countOf , PySequence_Count) |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 129 | spami(isMappingType , PyMapping_Check) |
Guido van Rossum | c9fb47e | 1996-08-21 17:40:51 +0000 | [diff] [blame] | 130 | spam2(op_getitem , PyObject_GetItem) |
| 131 | spam2n(op_delitem , PyObject_DelItem) |
| 132 | spam3n(op_setitem , PyObject_SetItem) |
Fred Drake | 428e75f | 2001-08-09 20:14:34 +0000 | [diff] [blame] | 133 | spamrc(op_lt , Py_LT) |
| 134 | spamrc(op_le , Py_LE) |
| 135 | spamrc(op_eq , Py_EQ) |
| 136 | spamrc(op_ne , Py_NE) |
| 137 | spamrc(op_gt , Py_GT) |
| 138 | spamrc(op_ge , Py_GE) |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 139 | |
| 140 | static PyObject* |
Raymond Hettinger | 5959c55 | 2002-08-19 03:19:09 +0000 | [diff] [blame] | 141 | op_pow(PyObject *s, PyObject *a) |
| 142 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 143 | PyObject *a1, *a2; |
| 144 | if (PyArg_UnpackTuple(a,"pow", 2, 2, &a1, &a2)) |
| 145 | return PyNumber_Power(a1, a2, Py_None); |
| 146 | return NULL; |
Raymond Hettinger | 5959c55 | 2002-08-19 03:19:09 +0000 | [diff] [blame] | 147 | } |
| 148 | |
| 149 | static PyObject* |
Armin Rigo | f5bd3b4 | 2005-12-29 16:50:42 +0000 | [diff] [blame] | 150 | op_ipow(PyObject *s, PyObject *a) |
| 151 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 152 | PyObject *a1, *a2; |
| 153 | if (PyArg_UnpackTuple(a,"ipow", 2, 2, &a1, &a2)) |
| 154 | return PyNumber_InPlacePower(a1, a2, Py_None); |
| 155 | return NULL; |
Armin Rigo | f5bd3b4 | 2005-12-29 16:50:42 +0000 | [diff] [blame] | 156 | } |
| 157 | |
Guido van Rossum | 38fff8c | 2006-03-07 18:50:55 +0000 | [diff] [blame] | 158 | static PyObject * |
| 159 | op_index(PyObject *s, PyObject *a) |
| 160 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 161 | return PyNumber_Index(a); |
Guido van Rossum | 38fff8c | 2006-03-07 18:50:55 +0000 | [diff] [blame] | 162 | } |
| 163 | |
Armin Rigo | f5bd3b4 | 2005-12-29 16:50:42 +0000 | [diff] [blame] | 164 | static PyObject* |
Raymond Hettinger | 9543b34 | 2003-01-18 23:22:20 +0000 | [diff] [blame] | 165 | is_(PyObject *s, PyObject *a) |
| 166 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 167 | PyObject *a1, *a2, *result = NULL; |
| 168 | if (PyArg_UnpackTuple(a,"is_", 2, 2, &a1, &a2)) { |
| 169 | result = (a1 == a2) ? Py_True : Py_False; |
| 170 | Py_INCREF(result); |
| 171 | } |
| 172 | return result; |
Raymond Hettinger | 9543b34 | 2003-01-18 23:22:20 +0000 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | static PyObject* |
| 176 | is_not(PyObject *s, PyObject *a) |
| 177 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 178 | PyObject *a1, *a2, *result = NULL; |
| 179 | if (PyArg_UnpackTuple(a,"is_not", 2, 2, &a1, &a2)) { |
| 180 | result = (a1 != a2) ? Py_True : Py_False; |
| 181 | Py_INCREF(result); |
| 182 | } |
| 183 | return result; |
Raymond Hettinger | 9543b34 | 2003-01-18 23:22:20 +0000 | [diff] [blame] | 184 | } |
| 185 | |
| 186 | static PyObject* |
Fred Drake | 5639ba4 | 2000-07-08 04:12:08 +0000 | [diff] [blame] | 187 | op_getslice(PyObject *s, PyObject *a) |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 188 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 189 | PyObject *a1; |
| 190 | Py_ssize_t a2, a3; |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 191 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 192 | if (!PyArg_ParseTuple(a, "Onn:getslice", &a1, &a2, &a3)) |
| 193 | return NULL; |
| 194 | return PySequence_GetSlice(a1, a2, a3); |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | static PyObject* |
Fred Drake | 5639ba4 | 2000-07-08 04:12:08 +0000 | [diff] [blame] | 198 | op_setslice(PyObject *s, PyObject *a) |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 199 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 200 | PyObject *a1, *a4; |
| 201 | Py_ssize_t a2, a3; |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 202 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 203 | if (!PyArg_ParseTuple(a, "OnnO:setslice", &a1, &a2, &a3, &a4)) |
| 204 | return NULL; |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 205 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 206 | if (-1 == PySequence_SetSlice(a1, a2, a3, a4)) |
| 207 | return NULL; |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 208 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 209 | Py_RETURN_NONE; |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 210 | } |
| 211 | |
Guido van Rossum | c9fb47e | 1996-08-21 17:40:51 +0000 | [diff] [blame] | 212 | static PyObject* |
Fred Drake | 5639ba4 | 2000-07-08 04:12:08 +0000 | [diff] [blame] | 213 | op_delslice(PyObject *s, PyObject *a) |
Guido van Rossum | c9fb47e | 1996-08-21 17:40:51 +0000 | [diff] [blame] | 214 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 215 | PyObject *a1; |
| 216 | Py_ssize_t a2, a3; |
Guido van Rossum | c9fb47e | 1996-08-21 17:40:51 +0000 | [diff] [blame] | 217 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 218 | if (!PyArg_ParseTuple(a, "Onn:delslice", &a1, &a2, &a3)) |
| 219 | return NULL; |
Guido van Rossum | c9fb47e | 1996-08-21 17:40:51 +0000 | [diff] [blame] | 220 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 221 | if (-1 == PySequence_DelSlice(a1, a2, a3)) |
| 222 | return NULL; |
Guido van Rossum | c9fb47e | 1996-08-21 17:40:51 +0000 | [diff] [blame] | 223 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 224 | Py_RETURN_NONE; |
Guido van Rossum | c9fb47e | 1996-08-21 17:40:51 +0000 | [diff] [blame] | 225 | } |
| 226 | |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 227 | #undef spam1 |
| 228 | #undef spam2 |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 229 | #undef spam1o |
| 230 | #undef spam1o |
Neal Norwitz | 200788c | 2002-08-13 22:20:41 +0000 | [diff] [blame] | 231 | #define spam1(OP,DOC) {#OP, OP, METH_VARARGS, PyDoc_STR(DOC)}, |
Armin Rigo | c4308d5 | 2005-12-29 14:39:28 +0000 | [diff] [blame] | 232 | #define spam2(OP,ALTOP,DOC) {#OP, op_##OP, METH_VARARGS, PyDoc_STR(DOC)}, \ |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 233 | {#ALTOP, op_##OP, METH_VARARGS, PyDoc_STR(DOC)}, |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 234 | #define spam1o(OP,DOC) {#OP, OP, METH_O, PyDoc_STR(DOC)}, |
Armin Rigo | c4308d5 | 2005-12-29 14:39:28 +0000 | [diff] [blame] | 235 | #define spam2o(OP,ALTOP,DOC) {#OP, op_##OP, METH_O, PyDoc_STR(DOC)}, \ |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 236 | {#ALTOP, op_##OP, METH_O, PyDoc_STR(DOC)}, |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 237 | |
Benjamin Peterson | 629026a | 2014-05-11 16:11:44 -0700 | [diff] [blame] | 238 | |
| 239 | |
| 240 | /* compare_digest **********************************************************/ |
| 241 | |
| 242 | /* |
| 243 | * timing safe compare |
| 244 | * |
| 245 | * Returns 1 of the strings are equal. |
| 246 | * In case of len(a) != len(b) the function tries to keep the timing |
| 247 | * dependent on the length of b. CPU cache locally may still alter timing |
| 248 | * a bit. |
| 249 | */ |
| 250 | static int |
| 251 | _tscmp(const unsigned char *a, const unsigned char *b, |
| 252 | Py_ssize_t len_a, Py_ssize_t len_b) |
| 253 | { |
| 254 | /* The volatile type declarations make sure that the compiler has no |
| 255 | * chance to optimize and fold the code in any way that may change |
| 256 | * the timing. |
| 257 | */ |
| 258 | volatile Py_ssize_t length; |
| 259 | volatile const unsigned char *left; |
| 260 | volatile const unsigned char *right; |
| 261 | Py_ssize_t i; |
| 262 | unsigned char result; |
| 263 | |
| 264 | /* loop count depends on length of b */ |
| 265 | length = len_b; |
| 266 | left = NULL; |
| 267 | right = b; |
| 268 | |
| 269 | /* don't use else here to keep the amount of CPU instructions constant, |
| 270 | * volatile forces re-evaluation |
| 271 | * */ |
| 272 | if (len_a == length) { |
| 273 | left = *((volatile const unsigned char**)&a); |
| 274 | result = 0; |
| 275 | } |
| 276 | if (len_a != length) { |
| 277 | left = b; |
| 278 | result = 1; |
| 279 | } |
| 280 | |
| 281 | for (i=0; i < length; i++) { |
| 282 | result |= *left++ ^ *right++; |
| 283 | } |
| 284 | |
| 285 | return (result == 0); |
| 286 | } |
| 287 | |
| 288 | PyDoc_STRVAR(compare_digest__doc__, |
| 289 | "compare_digest(a, b) -> bool\n" |
| 290 | "\n" |
| 291 | "Return 'a == b'. This function uses an approach designed to prevent\n" |
| 292 | "timing analysis, making it appropriate for cryptography.\n" |
| 293 | "a and b must both be of the same type: either str (ASCII only),\n" |
| 294 | "or any type that supports the buffer protocol (e.g. bytes).\n" |
| 295 | "\n" |
| 296 | "Note: If a and b are of different lengths, or if an error occurs,\n" |
| 297 | "a timing attack could theoretically reveal information about the\n" |
| 298 | "types and lengths of a and b--but not their values.\n"); |
| 299 | |
| 300 | static PyObject* |
| 301 | compare_digest(PyObject *self, PyObject *args) |
| 302 | { |
| 303 | PyObject *a, *b; |
| 304 | int rc; |
| 305 | |
| 306 | if (!PyArg_ParseTuple(args, "OO:compare_digest", &a, &b)) { |
| 307 | return NULL; |
| 308 | } |
| 309 | |
| 310 | /* Unicode string */ |
| 311 | if (PyUnicode_Check(a) && PyUnicode_Check(b)) { |
Benjamin Peterson | a1ccfb5 | 2014-05-11 16:14:00 -0700 | [diff] [blame] | 312 | rc = _tscmp((const unsigned char *)PyUnicode_AS_DATA(a), |
| 313 | (const unsigned char *)PyUnicode_AS_DATA(b), |
Benjamin Peterson | 629026a | 2014-05-11 16:11:44 -0700 | [diff] [blame] | 314 | PyUnicode_GET_DATA_SIZE(a), |
| 315 | PyUnicode_GET_DATA_SIZE(b)); |
| 316 | } |
| 317 | /* fallback to buffer interface for bytes, bytesarray and other */ |
| 318 | else { |
| 319 | Py_buffer view_a; |
| 320 | Py_buffer view_b; |
| 321 | |
Benjamin Peterson | 8c16605 | 2014-05-11 16:17:02 -0700 | [diff] [blame] | 322 | if (PyObject_CheckBuffer(a) == 0 && PyObject_CheckBuffer(b) == 0) { |
Benjamin Peterson | 629026a | 2014-05-11 16:11:44 -0700 | [diff] [blame] | 323 | PyErr_Format(PyExc_TypeError, |
| 324 | "unsupported operand types(s) or combination of types: " |
| 325 | "'%.100s' and '%.100s'", |
| 326 | Py_TYPE(a)->tp_name, Py_TYPE(b)->tp_name); |
| 327 | return NULL; |
| 328 | } |
| 329 | |
| 330 | if (PyObject_GetBuffer(a, &view_a, PyBUF_SIMPLE) == -1) { |
| 331 | return NULL; |
| 332 | } |
| 333 | if (view_a.ndim > 1) { |
| 334 | PyErr_SetString(PyExc_BufferError, |
| 335 | "Buffer must be single dimension"); |
| 336 | PyBuffer_Release(&view_a); |
| 337 | return NULL; |
| 338 | } |
| 339 | |
| 340 | if (PyObject_GetBuffer(b, &view_b, PyBUF_SIMPLE) == -1) { |
| 341 | PyBuffer_Release(&view_a); |
| 342 | return NULL; |
| 343 | } |
| 344 | if (view_b.ndim > 1) { |
| 345 | PyErr_SetString(PyExc_BufferError, |
| 346 | "Buffer must be single dimension"); |
| 347 | PyBuffer_Release(&view_a); |
| 348 | PyBuffer_Release(&view_b); |
| 349 | return NULL; |
| 350 | } |
| 351 | |
| 352 | rc = _tscmp((const unsigned char*)view_a.buf, |
| 353 | (const unsigned char*)view_b.buf, |
| 354 | view_a.len, |
| 355 | view_b.len); |
| 356 | |
| 357 | PyBuffer_Release(&view_a); |
| 358 | PyBuffer_Release(&view_b); |
| 359 | } |
| 360 | |
| 361 | return PyBool_FromLong(rc); |
| 362 | } |
| 363 | |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 364 | static struct PyMethodDef operator_methods[] = { |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 365 | |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 366 | spam1o(isCallable, |
Guido van Rossum | 832f6d2 | 1998-05-22 18:12:59 +0000 | [diff] [blame] | 367 | "isCallable(a) -- Same as callable(a).") |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 368 | spam1o(isNumberType, |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 369 | "isNumberType(a) -- Return True if a has a numeric type, False otherwise.") |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 370 | spam1o(isSequenceType, |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 371 | "isSequenceType(a) -- Return True if a has a sequence type, False otherwise.") |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 372 | spam1o(truth, |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 373 | "truth(a) -- Return True if a is true, False otherwise.") |
Fred Drake | ea4d3f0 | 2000-09-17 16:09:27 +0000 | [diff] [blame] | 374 | spam2(contains,__contains__, |
Guido van Rossum | 832f6d2 | 1998-05-22 18:12:59 +0000 | [diff] [blame] | 375 | "contains(a, b) -- Same as b in a (note reversed operands).") |
Fred Drake | ea4d3f0 | 2000-09-17 16:09:27 +0000 | [diff] [blame] | 376 | spam1(sequenceIncludes, |
| 377 | "sequenceIncludes(a, b) -- Same as b in a (note reversed operands; deprecated).") |
Guido van Rossum | 1720230 | 1996-08-19 22:01:39 +0000 | [diff] [blame] | 378 | spam1(indexOf, |
Guido van Rossum | 832f6d2 | 1998-05-22 18:12:59 +0000 | [diff] [blame] | 379 | "indexOf(a, b) -- Return the first index of b in a.") |
Guido van Rossum | 1720230 | 1996-08-19 22:01:39 +0000 | [diff] [blame] | 380 | spam1(countOf, |
| 381 | "countOf(a, b) -- Return the number of times b occurs in a.") |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 382 | spam1o(isMappingType, |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 383 | "isMappingType(a) -- Return True if a has a mapping type, False otherwise.") |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 384 | |
Raymond Hettinger | 9543b34 | 2003-01-18 23:22:20 +0000 | [diff] [blame] | 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.") |
Neal Norwitz | 8a87f5d | 2006-08-12 17:03:09 +0000 | [diff] [blame] | 387 | spam2o(index, __index__, "index(a) -- Same as a.__index__()") |
Guido van Rossum | 832f6d2 | 1998-05-22 18:12:59 +0000 | [diff] [blame] | 388 | spam2(add,__add__, "add(a, b) -- Same as a + b.") |
| 389 | spam2(sub,__sub__, "sub(a, b) -- Same as a - b.") |
| 390 | spam2(mul,__mul__, "mul(a, b) -- Same as a * b.") |
Fred Drake | 428e75f | 2001-08-09 20:14:34 +0000 | [diff] [blame] | 391 | spam2(div,__div__, "div(a, b) -- Same as a / b when __future__.division is not in effect.") |
| 392 | spam2(floordiv,__floordiv__, "floordiv(a, b) -- Same as a // b.") |
| 393 | spam2(truediv,__truediv__, "truediv(a, b) -- Same as a / b when __future__.division is in effect.") |
Guido van Rossum | 832f6d2 | 1998-05-22 18:12:59 +0000 | [diff] [blame] | 394 | spam2(mod,__mod__, "mod(a, b) -- Same as a % b.") |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 395 | spam2o(neg,__neg__, "neg(a) -- Same as -a.") |
| 396 | spam2o(pos,__pos__, "pos(a) -- Same as +a.") |
| 397 | spam2o(abs,__abs__, "abs(a) -- Same as abs(a).") |
| 398 | spam2o(inv,__inv__, "inv(a) -- Same as ~a.") |
| 399 | spam2o(invert,__invert__, "invert(a) -- Same as ~a.") |
Guido van Rossum | 832f6d2 | 1998-05-22 18:12:59 +0000 | [diff] [blame] | 400 | spam2(lshift,__lshift__, "lshift(a, b) -- Same as a << b.") |
| 401 | spam2(rshift,__rshift__, "rshift(a, b) -- Same as a >> b.") |
Raymond Hettinger | 36cd2bf | 2003-01-03 08:24:58 +0000 | [diff] [blame] | 402 | spam2o(not_,__not__, "not_(a) -- Same as not a.") |
Guido van Rossum | 832f6d2 | 1998-05-22 18:12:59 +0000 | [diff] [blame] | 403 | spam2(and_,__and__, "and_(a, b) -- Same as a & b.") |
| 404 | spam2(xor,__xor__, "xor(a, b) -- Same as a ^ b.") |
| 405 | spam2(or_,__or__, "or_(a, b) -- Same as a | b.") |
Georg Brandl | efc2858 | 2009-11-04 07:38:12 +0000 | [diff] [blame] | 406 | spam2(iadd,__iadd__, "a = iadd(a, b) -- Same as a += b.") |
| 407 | spam2(isub,__isub__, "a = isub(a, b) -- Same as a -= b.") |
| 408 | spam2(imul,__imul__, "a = imul(a, b) -- Same as a *= b.") |
| 409 | spam2(idiv,__idiv__, "a = idiv(a, b) -- Same as a /= b when __future__.division is not in effect.") |
| 410 | spam2(ifloordiv,__ifloordiv__, "a = ifloordiv(a, b) -- Same as a //= b.") |
| 411 | spam2(itruediv,__itruediv__, "a = itruediv(a, b) -- Same as a /= b when __future__.division is in effect.") |
| 412 | spam2(imod,__imod__, "a = imod(a, b) -- Same as a %= b.") |
| 413 | spam2(ilshift,__ilshift__, "a = ilshift(a, b) -- Same as a <<= b.") |
| 414 | spam2(irshift,__irshift__, "a = irshift(a, b) -- Same as a >>= b.") |
| 415 | spam2(iand,__iand__, "a = iand(a, b) -- Same as a &= b.") |
| 416 | spam2(ixor,__ixor__, "a = ixor(a, b) -- Same as a ^= b.") |
| 417 | spam2(ior,__ior__, "a = ior(a, b) -- Same as a |= b.") |
Guido van Rossum | 1720230 | 1996-08-19 22:01:39 +0000 | [diff] [blame] | 418 | spam2(concat,__concat__, |
Guido van Rossum | 832f6d2 | 1998-05-22 18:12:59 +0000 | [diff] [blame] | 419 | "concat(a, b) -- Same as a + b, for a and b sequences.") |
Guido van Rossum | 1720230 | 1996-08-19 22:01:39 +0000 | [diff] [blame] | 420 | spam2(repeat,__repeat__, |
Guido van Rossum | 36a484f | 1996-12-05 19:01:16 +0000 | [diff] [blame] | 421 | "repeat(a, b) -- Return a * b, where a is a sequence, and b is an integer.") |
Armin Rigo | f5bd3b4 | 2005-12-29 16:50:42 +0000 | [diff] [blame] | 422 | spam2(iconcat,__iconcat__, |
Georg Brandl | efc2858 | 2009-11-04 07:38:12 +0000 | [diff] [blame] | 423 | "a = iconcat(a, b) -- Same as a += b, for a and b sequences.") |
Armin Rigo | f5bd3b4 | 2005-12-29 16:50:42 +0000 | [diff] [blame] | 424 | spam2(irepeat,__irepeat__, |
Georg Brandl | efc2858 | 2009-11-04 07:38:12 +0000 | [diff] [blame] | 425 | "a = irepeat(a, b) -- Same as a *= b, where a is a sequence, and b is an integer.") |
Guido van Rossum | 1720230 | 1996-08-19 22:01:39 +0000 | [diff] [blame] | 426 | spam2(getitem,__getitem__, |
Guido van Rossum | 832f6d2 | 1998-05-22 18:12:59 +0000 | [diff] [blame] | 427 | "getitem(a, b) -- Same as a[b].") |
Guido van Rossum | 1720230 | 1996-08-19 22:01:39 +0000 | [diff] [blame] | 428 | spam2(setitem,__setitem__, |
Guido van Rossum | 832f6d2 | 1998-05-22 18:12:59 +0000 | [diff] [blame] | 429 | "setitem(a, b, c) -- Same as a[b] = c.") |
Guido van Rossum | c9fb47e | 1996-08-21 17:40:51 +0000 | [diff] [blame] | 430 | spam2(delitem,__delitem__, |
Guido van Rossum | 832f6d2 | 1998-05-22 18:12:59 +0000 | [diff] [blame] | 431 | "delitem(a, b) -- Same as del a[b].") |
Armin Rigo | f5bd3b4 | 2005-12-29 16:50:42 +0000 | [diff] [blame] | 432 | spam2(pow,__pow__, "pow(a, b) -- Same as a ** b.") |
Georg Brandl | efc2858 | 2009-11-04 07:38:12 +0000 | [diff] [blame] | 433 | spam2(ipow,__ipow__, "a = ipow(a, b) -- Same as a **= b.") |
Guido van Rossum | 1720230 | 1996-08-19 22:01:39 +0000 | [diff] [blame] | 434 | spam2(getslice,__getslice__, |
Guido van Rossum | 832f6d2 | 1998-05-22 18:12:59 +0000 | [diff] [blame] | 435 | "getslice(a, b, c) -- Same as a[b:c].") |
Guido van Rossum | 1720230 | 1996-08-19 22:01:39 +0000 | [diff] [blame] | 436 | spam2(setslice,__setslice__, |
Guido van Rossum | 832f6d2 | 1998-05-22 18:12:59 +0000 | [diff] [blame] | 437 | "setslice(a, b, c, d) -- Same as a[b:c] = d.") |
Guido van Rossum | c9fb47e | 1996-08-21 17:40:51 +0000 | [diff] [blame] | 438 | spam2(delslice,__delslice__, |
Guido van Rossum | 832f6d2 | 1998-05-22 18:12:59 +0000 | [diff] [blame] | 439 | "delslice(a, b, c) -- Same as del a[b:c].") |
Fred Drake | 428e75f | 2001-08-09 20:14:34 +0000 | [diff] [blame] | 440 | spam2(lt,__lt__, "lt(a, b) -- Same as a<b.") |
| 441 | spam2(le,__le__, "le(a, b) -- Same as a<=b.") |
| 442 | spam2(eq,__eq__, "eq(a, b) -- Same as a==b.") |
| 443 | spam2(ne,__ne__, "ne(a, b) -- Same as a!=b.") |
| 444 | spam2(gt,__gt__, "gt(a, b) -- Same as a>b.") |
| 445 | spam2(ge,__ge__, "ge(a, b) -- Same as a>=b.") |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 446 | |
Benjamin Peterson | 629026a | 2014-05-11 16:11:44 -0700 | [diff] [blame] | 447 | {"_compare_digest", (PyCFunction)compare_digest, METH_VARARGS, |
| 448 | compare_digest__doc__}, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 449 | {NULL, NULL} /* sentinel */ |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 450 | |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 451 | }; |
| 452 | |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 453 | /* itemgetter object **********************************************************/ |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 454 | |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 455 | typedef struct { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 456 | PyObject_HEAD |
| 457 | Py_ssize_t nitems; |
| 458 | PyObject *item; |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 459 | } itemgetterobject; |
| 460 | |
| 461 | static PyTypeObject itemgetter_type; |
| 462 | |
| 463 | static PyObject * |
| 464 | itemgetter_new(PyTypeObject *type, PyObject *args, PyObject *kwds) |
| 465 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 466 | itemgetterobject *ig; |
| 467 | PyObject *item; |
| 468 | Py_ssize_t nitems; |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 469 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 470 | if (!_PyArg_NoKeywords("itemgetter()", kwds)) |
| 471 | return NULL; |
Georg Brandl | 02c4287 | 2005-08-26 06:42:30 +0000 | [diff] [blame] | 472 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 473 | nitems = PyTuple_GET_SIZE(args); |
| 474 | if (nitems <= 1) { |
| 475 | if (!PyArg_UnpackTuple(args, "itemgetter", 1, 1, &item)) |
| 476 | return NULL; |
| 477 | } else |
| 478 | item = args; |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 479 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 480 | /* create itemgetterobject structure */ |
| 481 | ig = PyObject_GC_New(itemgetterobject, &itemgetter_type); |
| 482 | if (ig == NULL) |
| 483 | return NULL; |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 484 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 485 | Py_INCREF(item); |
| 486 | ig->item = item; |
| 487 | ig->nitems = nitems; |
| 488 | |
| 489 | PyObject_GC_Track(ig); |
| 490 | return (PyObject *)ig; |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 491 | } |
| 492 | |
| 493 | static void |
| 494 | itemgetter_dealloc(itemgetterobject *ig) |
| 495 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 496 | PyObject_GC_UnTrack(ig); |
| 497 | Py_XDECREF(ig->item); |
| 498 | PyObject_GC_Del(ig); |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 499 | } |
| 500 | |
| 501 | static int |
| 502 | itemgetter_traverse(itemgetterobject *ig, visitproc visit, void *arg) |
| 503 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 504 | Py_VISIT(ig->item); |
| 505 | return 0; |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 506 | } |
| 507 | |
| 508 | static PyObject * |
| 509 | itemgetter_call(itemgetterobject *ig, PyObject *args, PyObject *kw) |
| 510 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 511 | PyObject *obj, *result; |
| 512 | Py_ssize_t i, nitems=ig->nitems; |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 513 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 514 | if (!PyArg_UnpackTuple(args, "itemgetter", 1, 1, &obj)) |
| 515 | return NULL; |
| 516 | if (nitems == 1) |
| 517 | return PyObject_GetItem(obj, ig->item); |
Raymond Hettinger | 984f9bb | 2005-03-09 16:38:48 +0000 | [diff] [blame] | 518 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 519 | assert(PyTuple_Check(ig->item)); |
| 520 | assert(PyTuple_GET_SIZE(ig->item) == nitems); |
Raymond Hettinger | 984f9bb | 2005-03-09 16:38:48 +0000 | [diff] [blame] | 521 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 522 | result = PyTuple_New(nitems); |
| 523 | if (result == NULL) |
| 524 | return NULL; |
Raymond Hettinger | 984f9bb | 2005-03-09 16:38:48 +0000 | [diff] [blame] | 525 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 526 | for (i=0 ; i < nitems ; i++) { |
| 527 | PyObject *item, *val; |
| 528 | item = PyTuple_GET_ITEM(ig->item, i); |
| 529 | val = PyObject_GetItem(obj, item); |
| 530 | if (val == NULL) { |
| 531 | Py_DECREF(result); |
| 532 | return NULL; |
| 533 | } |
| 534 | PyTuple_SET_ITEM(result, i, val); |
| 535 | } |
| 536 | return result; |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 537 | } |
| 538 | |
| 539 | PyDoc_STRVAR(itemgetter_doc, |
Raymond Hettinger | 984f9bb | 2005-03-09 16:38:48 +0000 | [diff] [blame] | 540 | "itemgetter(item, ...) --> itemgetter object\n\ |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 541 | \n\ |
Raymond Hettinger | 984f9bb | 2005-03-09 16:38:48 +0000 | [diff] [blame] | 542 | Return a callable object that fetches the given item(s) from its operand.\n\ |
Ezio Melotti | 5f4ba6b | 2013-05-08 10:53:11 +0300 | [diff] [blame] | 543 | After f = itemgetter(2), the call f(r) returns r[2].\n\ |
| 544 | After g = itemgetter(2, 5, 3), the call g(r) returns (r[2], r[5], r[3])"); |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 545 | |
| 546 | static PyTypeObject itemgetter_type = { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 547 | PyVarObject_HEAD_INIT(NULL, 0) |
| 548 | "operator.itemgetter", /* tp_name */ |
| 549 | sizeof(itemgetterobject), /* tp_basicsize */ |
| 550 | 0, /* tp_itemsize */ |
| 551 | /* methods */ |
| 552 | (destructor)itemgetter_dealloc, /* tp_dealloc */ |
| 553 | 0, /* tp_print */ |
| 554 | 0, /* tp_getattr */ |
| 555 | 0, /* tp_setattr */ |
| 556 | 0, /* tp_compare */ |
| 557 | 0, /* tp_repr */ |
| 558 | 0, /* tp_as_number */ |
| 559 | 0, /* tp_as_sequence */ |
| 560 | 0, /* tp_as_mapping */ |
| 561 | 0, /* tp_hash */ |
| 562 | (ternaryfunc)itemgetter_call, /* tp_call */ |
| 563 | 0, /* tp_str */ |
| 564 | PyObject_GenericGetAttr, /* tp_getattro */ |
| 565 | 0, /* tp_setattro */ |
| 566 | 0, /* tp_as_buffer */ |
| 567 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */ |
| 568 | itemgetter_doc, /* tp_doc */ |
| 569 | (traverseproc)itemgetter_traverse, /* tp_traverse */ |
| 570 | 0, /* tp_clear */ |
| 571 | 0, /* tp_richcompare */ |
| 572 | 0, /* tp_weaklistoffset */ |
| 573 | 0, /* tp_iter */ |
| 574 | 0, /* tp_iternext */ |
| 575 | 0, /* tp_methods */ |
| 576 | 0, /* tp_members */ |
| 577 | 0, /* tp_getset */ |
| 578 | 0, /* tp_base */ |
| 579 | 0, /* tp_dict */ |
| 580 | 0, /* tp_descr_get */ |
| 581 | 0, /* tp_descr_set */ |
| 582 | 0, /* tp_dictoffset */ |
| 583 | 0, /* tp_init */ |
| 584 | 0, /* tp_alloc */ |
| 585 | itemgetter_new, /* tp_new */ |
| 586 | 0, /* tp_free */ |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 587 | }; |
| 588 | |
| 589 | |
| 590 | /* attrgetter object **********************************************************/ |
| 591 | |
| 592 | typedef struct { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 593 | PyObject_HEAD |
| 594 | Py_ssize_t nattrs; |
| 595 | PyObject *attr; |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 596 | } attrgetterobject; |
| 597 | |
| 598 | static PyTypeObject attrgetter_type; |
| 599 | |
| 600 | static PyObject * |
| 601 | attrgetter_new(PyTypeObject *type, PyObject *args, PyObject *kwds) |
| 602 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 603 | attrgetterobject *ag; |
| 604 | PyObject *attr; |
| 605 | Py_ssize_t nattrs; |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 606 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 607 | if (!_PyArg_NoKeywords("attrgetter()", kwds)) |
| 608 | return NULL; |
Georg Brandl | 02c4287 | 2005-08-26 06:42:30 +0000 | [diff] [blame] | 609 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 610 | nattrs = PyTuple_GET_SIZE(args); |
| 611 | if (nattrs <= 1) { |
| 612 | if (!PyArg_UnpackTuple(args, "attrgetter", 1, 1, &attr)) |
| 613 | return NULL; |
| 614 | } else |
| 615 | attr = args; |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 616 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 617 | /* create attrgetterobject structure */ |
| 618 | ag = PyObject_GC_New(attrgetterobject, &attrgetter_type); |
| 619 | if (ag == NULL) |
| 620 | return NULL; |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 621 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 622 | Py_INCREF(attr); |
| 623 | ag->attr = attr; |
| 624 | ag->nattrs = nattrs; |
| 625 | |
| 626 | PyObject_GC_Track(ag); |
| 627 | return (PyObject *)ag; |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 628 | } |
| 629 | |
| 630 | static void |
| 631 | attrgetter_dealloc(attrgetterobject *ag) |
| 632 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 633 | PyObject_GC_UnTrack(ag); |
| 634 | Py_XDECREF(ag->attr); |
| 635 | PyObject_GC_Del(ag); |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 636 | } |
| 637 | |
| 638 | static int |
| 639 | attrgetter_traverse(attrgetterobject *ag, visitproc visit, void *arg) |
| 640 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 641 | Py_VISIT(ag->attr); |
| 642 | return 0; |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 643 | } |
| 644 | |
| 645 | static PyObject * |
Georg Brandl | e2065c6 | 2008-02-23 23:02:23 +0000 | [diff] [blame] | 646 | dotted_getattr(PyObject *obj, PyObject *attr) |
| 647 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 648 | char *s, *p; |
Georg Brandl | e2065c6 | 2008-02-23 23:02:23 +0000 | [diff] [blame] | 649 | |
| 650 | #ifdef Py_USING_UNICODE |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 651 | if (PyUnicode_Check(attr)) { |
| 652 | attr = _PyUnicode_AsDefaultEncodedString(attr, NULL); |
| 653 | if (attr == NULL) |
| 654 | return NULL; |
| 655 | } |
Georg Brandl | e2065c6 | 2008-02-23 23:02:23 +0000 | [diff] [blame] | 656 | #endif |
Georg Brandl | e2065c6 | 2008-02-23 23:02:23 +0000 | [diff] [blame] | 657 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 658 | if (!PyString_Check(attr)) { |
| 659 | PyErr_SetString(PyExc_TypeError, |
| 660 | "attribute name must be a string"); |
| 661 | return NULL; |
| 662 | } |
Georg Brandl | e2065c6 | 2008-02-23 23:02:23 +0000 | [diff] [blame] | 663 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 664 | s = PyString_AS_STRING(attr); |
| 665 | Py_INCREF(obj); |
| 666 | for (;;) { |
| 667 | PyObject *newobj, *str; |
| 668 | p = strchr(s, '.'); |
| 669 | str = p ? PyString_FromStringAndSize(s, (p-s)) : |
| 670 | PyString_FromString(s); |
| 671 | if (str == NULL) { |
| 672 | Py_DECREF(obj); |
| 673 | return NULL; |
| 674 | } |
| 675 | newobj = PyObject_GetAttr(obj, str); |
| 676 | Py_DECREF(str); |
| 677 | Py_DECREF(obj); |
| 678 | if (newobj == NULL) |
| 679 | return NULL; |
| 680 | obj = newobj; |
| 681 | if (p == NULL) break; |
| 682 | s = p+1; |
| 683 | } |
| 684 | |
| 685 | return obj; |
Georg Brandl | e2065c6 | 2008-02-23 23:02:23 +0000 | [diff] [blame] | 686 | } |
| 687 | |
| 688 | static PyObject * |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 689 | attrgetter_call(attrgetterobject *ag, PyObject *args, PyObject *kw) |
| 690 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 691 | PyObject *obj, *result; |
| 692 | Py_ssize_t i, nattrs=ag->nattrs; |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 693 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 694 | if (!PyArg_UnpackTuple(args, "attrgetter", 1, 1, &obj)) |
| 695 | return NULL; |
| 696 | if (ag->nattrs == 1) |
| 697 | return dotted_getattr(obj, ag->attr); |
Raymond Hettinger | 984f9bb | 2005-03-09 16:38:48 +0000 | [diff] [blame] | 698 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 699 | assert(PyTuple_Check(ag->attr)); |
| 700 | assert(PyTuple_GET_SIZE(ag->attr) == nattrs); |
Raymond Hettinger | 984f9bb | 2005-03-09 16:38:48 +0000 | [diff] [blame] | 701 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 702 | result = PyTuple_New(nattrs); |
| 703 | if (result == NULL) |
| 704 | return NULL; |
Raymond Hettinger | 984f9bb | 2005-03-09 16:38:48 +0000 | [diff] [blame] | 705 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 706 | for (i=0 ; i < nattrs ; i++) { |
| 707 | PyObject *attr, *val; |
| 708 | attr = PyTuple_GET_ITEM(ag->attr, i); |
| 709 | val = dotted_getattr(obj, attr); |
| 710 | if (val == NULL) { |
| 711 | Py_DECREF(result); |
| 712 | return NULL; |
| 713 | } |
| 714 | PyTuple_SET_ITEM(result, i, val); |
| 715 | } |
| 716 | return result; |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 717 | } |
| 718 | |
| 719 | PyDoc_STRVAR(attrgetter_doc, |
Raymond Hettinger | 984f9bb | 2005-03-09 16:38:48 +0000 | [diff] [blame] | 720 | "attrgetter(attr, ...) --> attrgetter object\n\ |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 721 | \n\ |
Raymond Hettinger | 984f9bb | 2005-03-09 16:38:48 +0000 | [diff] [blame] | 722 | Return a callable object that fetches the given attribute(s) from its operand.\n\ |
Ezio Melotti | 5f4ba6b | 2013-05-08 10:53:11 +0300 | [diff] [blame] | 723 | After f = attrgetter('name'), the call f(r) returns r.name.\n\ |
| 724 | After g = attrgetter('name', 'date'), the call g(r) returns (r.name, r.date).\n\ |
| 725 | After h = attrgetter('name.first', 'name.last'), the call h(r) returns\n\ |
Georg Brandl | e2065c6 | 2008-02-23 23:02:23 +0000 | [diff] [blame] | 726 | (r.name.first, r.name.last)."); |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 727 | |
| 728 | static PyTypeObject attrgetter_type = { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 729 | PyVarObject_HEAD_INIT(NULL, 0) |
| 730 | "operator.attrgetter", /* tp_name */ |
| 731 | sizeof(attrgetterobject), /* tp_basicsize */ |
| 732 | 0, /* tp_itemsize */ |
| 733 | /* methods */ |
| 734 | (destructor)attrgetter_dealloc, /* tp_dealloc */ |
| 735 | 0, /* tp_print */ |
| 736 | 0, /* tp_getattr */ |
| 737 | 0, /* tp_setattr */ |
| 738 | 0, /* tp_compare */ |
| 739 | 0, /* tp_repr */ |
| 740 | 0, /* tp_as_number */ |
| 741 | 0, /* tp_as_sequence */ |
| 742 | 0, /* tp_as_mapping */ |
| 743 | 0, /* tp_hash */ |
| 744 | (ternaryfunc)attrgetter_call, /* tp_call */ |
| 745 | 0, /* tp_str */ |
| 746 | PyObject_GenericGetAttr, /* tp_getattro */ |
| 747 | 0, /* tp_setattro */ |
| 748 | 0, /* tp_as_buffer */ |
| 749 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */ |
| 750 | attrgetter_doc, /* tp_doc */ |
| 751 | (traverseproc)attrgetter_traverse, /* tp_traverse */ |
| 752 | 0, /* tp_clear */ |
| 753 | 0, /* tp_richcompare */ |
| 754 | 0, /* tp_weaklistoffset */ |
| 755 | 0, /* tp_iter */ |
| 756 | 0, /* tp_iternext */ |
| 757 | 0, /* tp_methods */ |
| 758 | 0, /* tp_members */ |
| 759 | 0, /* tp_getset */ |
| 760 | 0, /* tp_base */ |
| 761 | 0, /* tp_dict */ |
| 762 | 0, /* tp_descr_get */ |
| 763 | 0, /* tp_descr_set */ |
| 764 | 0, /* tp_dictoffset */ |
| 765 | 0, /* tp_init */ |
| 766 | 0, /* tp_alloc */ |
| 767 | attrgetter_new, /* tp_new */ |
| 768 | 0, /* tp_free */ |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 769 | }; |
Georg Brandl | ebcfd11 | 2008-02-23 23:04:35 +0000 | [diff] [blame] | 770 | |
| 771 | |
| 772 | /* methodcaller object **********************************************************/ |
| 773 | |
| 774 | typedef struct { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 775 | PyObject_HEAD |
| 776 | PyObject *name; |
| 777 | PyObject *args; |
| 778 | PyObject *kwds; |
Georg Brandl | ebcfd11 | 2008-02-23 23:04:35 +0000 | [diff] [blame] | 779 | } methodcallerobject; |
| 780 | |
| 781 | static PyTypeObject methodcaller_type; |
| 782 | |
| 783 | static PyObject * |
| 784 | methodcaller_new(PyTypeObject *type, PyObject *args, PyObject *kwds) |
| 785 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 786 | methodcallerobject *mc; |
| 787 | PyObject *name, *newargs; |
Georg Brandl | ebcfd11 | 2008-02-23 23:04:35 +0000 | [diff] [blame] | 788 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 789 | if (PyTuple_GET_SIZE(args) < 1) { |
| 790 | PyErr_SetString(PyExc_TypeError, "methodcaller needs at least " |
| 791 | "one argument, the method name"); |
| 792 | return NULL; |
| 793 | } |
Georg Brandl | ebcfd11 | 2008-02-23 23:04:35 +0000 | [diff] [blame] | 794 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 795 | /* create methodcallerobject structure */ |
| 796 | mc = PyObject_GC_New(methodcallerobject, &methodcaller_type); |
| 797 | if (mc == NULL) |
| 798 | return NULL; |
Georg Brandl | ebcfd11 | 2008-02-23 23:04:35 +0000 | [diff] [blame] | 799 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 800 | newargs = PyTuple_GetSlice(args, 1, PyTuple_GET_SIZE(args)); |
| 801 | if (newargs == NULL) { |
| 802 | Py_DECREF(mc); |
| 803 | return NULL; |
| 804 | } |
| 805 | mc->args = newargs; |
Georg Brandl | ebcfd11 | 2008-02-23 23:04:35 +0000 | [diff] [blame] | 806 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 807 | name = PyTuple_GET_ITEM(args, 0); |
| 808 | Py_INCREF(name); |
| 809 | mc->name = name; |
Georg Brandl | ebcfd11 | 2008-02-23 23:04:35 +0000 | [diff] [blame] | 810 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 811 | Py_XINCREF(kwds); |
| 812 | mc->kwds = kwds; |
Georg Brandl | ebcfd11 | 2008-02-23 23:04:35 +0000 | [diff] [blame] | 813 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 814 | PyObject_GC_Track(mc); |
| 815 | return (PyObject *)mc; |
Georg Brandl | ebcfd11 | 2008-02-23 23:04:35 +0000 | [diff] [blame] | 816 | } |
| 817 | |
| 818 | static void |
| 819 | methodcaller_dealloc(methodcallerobject *mc) |
| 820 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 821 | PyObject_GC_UnTrack(mc); |
| 822 | Py_XDECREF(mc->name); |
| 823 | Py_XDECREF(mc->args); |
| 824 | Py_XDECREF(mc->kwds); |
| 825 | PyObject_GC_Del(mc); |
Georg Brandl | ebcfd11 | 2008-02-23 23:04:35 +0000 | [diff] [blame] | 826 | } |
| 827 | |
| 828 | static int |
| 829 | methodcaller_traverse(methodcallerobject *mc, visitproc visit, void *arg) |
| 830 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 831 | Py_VISIT(mc->args); |
| 832 | Py_VISIT(mc->kwds); |
| 833 | return 0; |
Georg Brandl | ebcfd11 | 2008-02-23 23:04:35 +0000 | [diff] [blame] | 834 | } |
| 835 | |
| 836 | static PyObject * |
| 837 | methodcaller_call(methodcallerobject *mc, PyObject *args, PyObject *kw) |
| 838 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 839 | PyObject *method, *obj, *result; |
Georg Brandl | ebcfd11 | 2008-02-23 23:04:35 +0000 | [diff] [blame] | 840 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 841 | if (!PyArg_UnpackTuple(args, "methodcaller", 1, 1, &obj)) |
| 842 | return NULL; |
| 843 | method = PyObject_GetAttr(obj, mc->name); |
| 844 | if (method == NULL) |
| 845 | return NULL; |
| 846 | result = PyObject_Call(method, mc->args, mc->kwds); |
| 847 | Py_DECREF(method); |
| 848 | return result; |
Georg Brandl | ebcfd11 | 2008-02-23 23:04:35 +0000 | [diff] [blame] | 849 | } |
| 850 | |
| 851 | PyDoc_STRVAR(methodcaller_doc, |
| 852 | "methodcaller(name, ...) --> methodcaller object\n\ |
| 853 | \n\ |
| 854 | Return a callable object that calls the given method on its operand.\n\ |
Ezio Melotti | 5f4ba6b | 2013-05-08 10:53:11 +0300 | [diff] [blame] | 855 | After f = methodcaller('name'), the call f(r) returns r.name().\n\ |
| 856 | After g = methodcaller('name', 'date', foo=1), the call g(r) returns\n\ |
Georg Brandl | ebcfd11 | 2008-02-23 23:04:35 +0000 | [diff] [blame] | 857 | r.name('date', foo=1)."); |
| 858 | |
| 859 | static PyTypeObject methodcaller_type = { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 860 | PyVarObject_HEAD_INIT(NULL, 0) |
| 861 | "operator.methodcaller", /* tp_name */ |
| 862 | sizeof(methodcallerobject), /* tp_basicsize */ |
| 863 | 0, /* tp_itemsize */ |
| 864 | /* methods */ |
| 865 | (destructor)methodcaller_dealloc, /* tp_dealloc */ |
| 866 | 0, /* tp_print */ |
| 867 | 0, /* tp_getattr */ |
| 868 | 0, /* tp_setattr */ |
| 869 | 0, /* tp_compare */ |
| 870 | 0, /* tp_repr */ |
| 871 | 0, /* tp_as_number */ |
| 872 | 0, /* tp_as_sequence */ |
| 873 | 0, /* tp_as_mapping */ |
| 874 | 0, /* tp_hash */ |
| 875 | (ternaryfunc)methodcaller_call, /* tp_call */ |
| 876 | 0, /* tp_str */ |
| 877 | PyObject_GenericGetAttr, /* tp_getattro */ |
| 878 | 0, /* tp_setattro */ |
| 879 | 0, /* tp_as_buffer */ |
| 880 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */ |
| 881 | methodcaller_doc, /* tp_doc */ |
| 882 | (traverseproc)methodcaller_traverse, /* tp_traverse */ |
| 883 | 0, /* tp_clear */ |
| 884 | 0, /* tp_richcompare */ |
| 885 | 0, /* tp_weaklistoffset */ |
| 886 | 0, /* tp_iter */ |
| 887 | 0, /* tp_iternext */ |
| 888 | 0, /* tp_methods */ |
| 889 | 0, /* tp_members */ |
| 890 | 0, /* tp_getset */ |
| 891 | 0, /* tp_base */ |
| 892 | 0, /* tp_dict */ |
| 893 | 0, /* tp_descr_get */ |
| 894 | 0, /* tp_descr_set */ |
| 895 | 0, /* tp_dictoffset */ |
| 896 | 0, /* tp_init */ |
| 897 | 0, /* tp_alloc */ |
| 898 | methodcaller_new, /* tp_new */ |
| 899 | 0, /* tp_free */ |
Georg Brandl | ebcfd11 | 2008-02-23 23:04:35 +0000 | [diff] [blame] | 900 | }; |
| 901 | |
| 902 | |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 903 | /* Initialization function for the module (*must* be called initoperator) */ |
| 904 | |
Mark Hammond | fe51c6d | 2002-08-02 02:27:13 +0000 | [diff] [blame] | 905 | PyMODINIT_FUNC |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 906 | initoperator(void) |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 907 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 908 | PyObject *m; |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 909 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 910 | /* Create the module and add the functions */ |
| 911 | m = Py_InitModule4("operator", operator_methods, operator_doc, |
| 912 | (PyObject*)NULL, PYTHON_API_VERSION); |
| 913 | if (m == NULL) |
| 914 | return; |
Raymond Hettinger | 166958b | 2003-12-01 13:18:39 +0000 | [diff] [blame] | 915 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 916 | if (PyType_Ready(&itemgetter_type) < 0) |
| 917 | return; |
| 918 | Py_INCREF(&itemgetter_type); |
| 919 | PyModule_AddObject(m, "itemgetter", (PyObject *)&itemgetter_type); |
Georg Brandl | ebcfd11 | 2008-02-23 23:04:35 +0000 | [diff] [blame] | 920 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 921 | if (PyType_Ready(&attrgetter_type) < 0) |
| 922 | return; |
| 923 | Py_INCREF(&attrgetter_type); |
| 924 | PyModule_AddObject(m, "attrgetter", (PyObject *)&attrgetter_type); |
| 925 | |
| 926 | if (PyType_Ready(&methodcaller_type) < 0) |
| 927 | return; |
| 928 | Py_INCREF(&methodcaller_type); |
| 929 | PyModule_AddObject(m, "methodcaller", (PyObject *)&methodcaller_type); |
Guido van Rossum | 037b940 | 1996-07-30 16:55:54 +0000 | [diff] [blame] | 930 | } |