blob: 274d8aad39f96316135bd0b1cd8b09fc1437363c [file] [log] [blame]
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001
2#include "Python.h"
3
4PyDoc_STRVAR(operator_doc,
5"Operator interface.\n\
Guido van Rossum037b9401996-07-30 16:55:54 +00006\n\
7This module exports a set of functions implemented in C corresponding\n\
8to the intrinsic operators of Python. For example, operator.add(x, y)\n\
9is equivalent to the expression x+y. The function names are those\n\
Georg Brandlefc28582009-11-04 07:38:12 +000010used for special methods; variants without leading and trailing\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011'__' are also provided for convenience.");
Guido van Rossum037b9401996-07-30 16:55:54 +000012
Raymond Hettinger36cd2bf2003-01-03 08:24:58 +000013#define spam1(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a1) { \
Guido van Rossum037b9401996-07-30 16:55:54 +000014 return AOP(a1); }
15
Fred Drake5639ba42000-07-08 04:12:08 +000016#define spam2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
Guido van Rossum037b9401996-07-30 16:55:54 +000017 PyObject *a1, *a2; \
Raymond Hettingerea3fdf42002-12-29 16:33:45 +000018 if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \
Guido van Rossum037b9401996-07-30 16:55:54 +000019 return AOP(a1,a2); }
20
Fred Drake5639ba42000-07-08 04:12:08 +000021#define spamoi(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
Guido van Rossum037b9401996-07-30 16:55:54 +000022 PyObject *a1; int a2; \
Fred Drakeea4d3f02000-09-17 16:09:27 +000023 if(! PyArg_ParseTuple(a,"Oi:" #OP,&a1,&a2)) return NULL; \
Guido van Rossum037b9401996-07-30 16:55:54 +000024 return AOP(a1,a2); }
25
Fred Drake5639ba42000-07-08 04:12:08 +000026#define spam2n(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
Guido van Rossum037b9401996-07-30 16:55:54 +000027 PyObject *a1, *a2; \
Raymond Hettingerea3fdf42002-12-29 16:33:45 +000028 if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \
Guido van Rossum037b9401996-07-30 16:55:54 +000029 if(-1 == AOP(a1,a2)) return NULL; \
30 Py_INCREF(Py_None); \
31 return Py_None; }
32
Fred Drake5639ba42000-07-08 04:12:08 +000033#define spam3n(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
Guido van Rossum037b9401996-07-30 16:55:54 +000034 PyObject *a1, *a2, *a3; \
Raymond Hettingerea3fdf42002-12-29 16:33:45 +000035 if(! PyArg_UnpackTuple(a,#OP,3,3,&a1,&a2,&a3)) return NULL; \
Guido van Rossum037b9401996-07-30 16:55:54 +000036 if(-1 == AOP(a1,a2,a3)) return NULL; \
37 Py_INCREF(Py_None); \
38 return Py_None; }
39
Raymond Hettinger36cd2bf2003-01-03 08:24:58 +000040#define spami(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a1) { \
41 long r; \
Guido van Rossum037b9401996-07-30 16:55:54 +000042 if(-1 == (r=AOP(a1))) return NULL; \
Guido van Rossum77f6a652002-04-03 22:41:51 +000043 return PyBool_FromLong(r); }
Guido van Rossum037b9401996-07-30 16:55:54 +000044
Fred Drake5639ba42000-07-08 04:12:08 +000045#define spami2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
Guido van Rossum037b9401996-07-30 16:55:54 +000046 PyObject *a1, *a2; long r; \
Raymond Hettingerea3fdf42002-12-29 16:33:45 +000047 if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \
Guido van Rossum037b9401996-07-30 16:55:54 +000048 if(-1 == (r=AOP(a1,a2))) return NULL; \
49 return PyInt_FromLong(r); }
50
Martin v. Löwis26fd9602006-04-22 11:15:41 +000051#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 Rossum77f6a652002-04-03 22:41:51 +000057#define spami2b(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
58 PyObject *a1, *a2; long r; \
Raymond Hettingerea3fdf42002-12-29 16:33:45 +000059 if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \
Guido van Rossum77f6a652002-04-03 22:41:51 +000060 if(-1 == (r=AOP(a1,a2))) return NULL; \
61 return PyBool_FromLong(r); }
62
Fred Drake428e75f2001-08-09 20:14:34 +000063#define spamrc(OP,A) static PyObject *OP(PyObject *s, PyObject *a) { \
64 PyObject *a1, *a2; \
Raymond Hettingerea3fdf42002-12-29 16:33:45 +000065 if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \
Fred Drake428e75f2001-08-09 20:14:34 +000066 return PyObject_RichCompare(a1,a2,A); }
67
Alexandre Vassalotti0fe79912009-07-05 04:22:40 +000068/* Deprecated operators that need warnings. */
69static int
70op_isCallable(PyObject *x)
71{
Antoine Pitrouc83ea132010-05-09 14:46:46 +000072 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 Vassalotti0fe79912009-07-05 04:22:40 +000076}
77
78static int
79op_sequenceIncludes(PyObject *seq, PyObject* ob)
80{
Antoine Pitrouc83ea132010-05-09 14:46:46 +000081 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 Vassalotti0fe79912009-07-05 04:22:40 +000085}
86
87spami(isCallable , op_isCallable)
Guido van Rossum037b9401996-07-30 16:55:54 +000088spami(isNumberType , PyNumber_Check)
89spami(truth , PyObject_IsTrue)
Guido van Rossumc9fb47e1996-08-21 17:40:51 +000090spam2(op_add , PyNumber_Add)
91spam2(op_sub , PyNumber_Subtract)
92spam2(op_mul , PyNumber_Multiply)
93spam2(op_div , PyNumber_Divide)
Fred Drake428e75f2001-08-09 20:14:34 +000094spam2(op_floordiv , PyNumber_FloorDivide)
95spam2(op_truediv , PyNumber_TrueDivide)
Guido van Rossumc9fb47e1996-08-21 17:40:51 +000096spam2(op_mod , PyNumber_Remainder)
97spam1(op_neg , PyNumber_Negative)
98spam1(op_pos , PyNumber_Positive)
99spam1(op_abs , PyNumber_Absolute)
100spam1(op_inv , PyNumber_Invert)
Fred Drakeea4d3f02000-09-17 16:09:27 +0000101spam1(op_invert , PyNumber_Invert)
Guido van Rossumc9fb47e1996-08-21 17:40:51 +0000102spam2(op_lshift , PyNumber_Lshift)
103spam2(op_rshift , PyNumber_Rshift)
Guido van Rossum99c185e1998-04-09 17:54:26 +0000104spami(op_not_ , PyObject_Not)
Guido van Rossumc9fb47e1996-08-21 17:40:51 +0000105spam2(op_and_ , PyNumber_And)
106spam2(op_xor , PyNumber_Xor)
107spam2(op_or_ , PyNumber_Or)
Armin Rigof5bd3b42005-12-29 16:50:42 +0000108spam2(op_iadd , PyNumber_InPlaceAdd)
109spam2(op_isub , PyNumber_InPlaceSubtract)
110spam2(op_imul , PyNumber_InPlaceMultiply)
111spam2(op_idiv , PyNumber_InPlaceDivide)
112spam2(op_ifloordiv , PyNumber_InPlaceFloorDivide)
113spam2(op_itruediv , PyNumber_InPlaceTrueDivide)
114spam2(op_imod , PyNumber_InPlaceRemainder)
115spam2(op_ilshift , PyNumber_InPlaceLshift)
116spam2(op_irshift , PyNumber_InPlaceRshift)
117spam2(op_iand , PyNumber_InPlaceAnd)
118spam2(op_ixor , PyNumber_InPlaceXor)
119spam2(op_ior , PyNumber_InPlaceOr)
Guido van Rossum037b9401996-07-30 16:55:54 +0000120spami(isSequenceType , PySequence_Check)
Guido van Rossumc9fb47e1996-08-21 17:40:51 +0000121spam2(op_concat , PySequence_Concat)
122spamoi(op_repeat , PySequence_Repeat)
Armin Rigof5bd3b42005-12-29 16:50:42 +0000123spam2(op_iconcat , PySequence_InPlaceConcat)
124spamoi(op_irepeat , PySequence_InPlaceRepeat)
Guido van Rossum77f6a652002-04-03 22:41:51 +0000125spami2b(op_contains , PySequence_Contains)
Alexandre Vassalotti0fe79912009-07-05 04:22:40 +0000126spami2b(sequenceIncludes, op_sequenceIncludes)
Martin v. Löwis26fd9602006-04-22 11:15:41 +0000127spamn2(indexOf , PySequence_Index)
128spamn2(countOf , PySequence_Count)
Guido van Rossum037b9401996-07-30 16:55:54 +0000129spami(isMappingType , PyMapping_Check)
Guido van Rossumc9fb47e1996-08-21 17:40:51 +0000130spam2(op_getitem , PyObject_GetItem)
131spam2n(op_delitem , PyObject_DelItem)
132spam3n(op_setitem , PyObject_SetItem)
Fred Drake428e75f2001-08-09 20:14:34 +0000133spamrc(op_lt , Py_LT)
134spamrc(op_le , Py_LE)
135spamrc(op_eq , Py_EQ)
136spamrc(op_ne , Py_NE)
137spamrc(op_gt , Py_GT)
138spamrc(op_ge , Py_GE)
Guido van Rossum037b9401996-07-30 16:55:54 +0000139
140static PyObject*
Raymond Hettinger5959c552002-08-19 03:19:09 +0000141op_pow(PyObject *s, PyObject *a)
142{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000143 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 Hettinger5959c552002-08-19 03:19:09 +0000147}
148
149static PyObject*
Armin Rigof5bd3b42005-12-29 16:50:42 +0000150op_ipow(PyObject *s, PyObject *a)
151{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000152 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 Rigof5bd3b42005-12-29 16:50:42 +0000156}
157
Guido van Rossum38fff8c2006-03-07 18:50:55 +0000158static PyObject *
159op_index(PyObject *s, PyObject *a)
160{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000161 return PyNumber_Index(a);
Guido van Rossum38fff8c2006-03-07 18:50:55 +0000162}
163
Armin Rigof5bd3b42005-12-29 16:50:42 +0000164static PyObject*
Raymond Hettinger9543b342003-01-18 23:22:20 +0000165is_(PyObject *s, PyObject *a)
166{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000167 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 Hettinger9543b342003-01-18 23:22:20 +0000173}
174
175static PyObject*
176is_not(PyObject *s, PyObject *a)
177{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000178 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 Hettinger9543b342003-01-18 23:22:20 +0000184}
185
186static PyObject*
Fred Drake5639ba42000-07-08 04:12:08 +0000187op_getslice(PyObject *s, PyObject *a)
Guido van Rossum037b9401996-07-30 16:55:54 +0000188{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000189 PyObject *a1;
190 Py_ssize_t a2, a3;
Guido van Rossum037b9401996-07-30 16:55:54 +0000191
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000192 if (!PyArg_ParseTuple(a, "Onn:getslice", &a1, &a2, &a3))
193 return NULL;
194 return PySequence_GetSlice(a1, a2, a3);
Guido van Rossum037b9401996-07-30 16:55:54 +0000195}
196
197static PyObject*
Fred Drake5639ba42000-07-08 04:12:08 +0000198op_setslice(PyObject *s, PyObject *a)
Guido van Rossum037b9401996-07-30 16:55:54 +0000199{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000200 PyObject *a1, *a4;
201 Py_ssize_t a2, a3;
Guido van Rossum037b9401996-07-30 16:55:54 +0000202
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000203 if (!PyArg_ParseTuple(a, "OnnO:setslice", &a1, &a2, &a3, &a4))
204 return NULL;
Guido van Rossum037b9401996-07-30 16:55:54 +0000205
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000206 if (-1 == PySequence_SetSlice(a1, a2, a3, a4))
207 return NULL;
Guido van Rossum037b9401996-07-30 16:55:54 +0000208
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000209 Py_RETURN_NONE;
Guido van Rossum037b9401996-07-30 16:55:54 +0000210}
211
Guido van Rossumc9fb47e1996-08-21 17:40:51 +0000212static PyObject*
Fred Drake5639ba42000-07-08 04:12:08 +0000213op_delslice(PyObject *s, PyObject *a)
Guido van Rossumc9fb47e1996-08-21 17:40:51 +0000214{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000215 PyObject *a1;
216 Py_ssize_t a2, a3;
Guido van Rossumc9fb47e1996-08-21 17:40:51 +0000217
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000218 if (!PyArg_ParseTuple(a, "Onn:delslice", &a1, &a2, &a3))
219 return NULL;
Guido van Rossumc9fb47e1996-08-21 17:40:51 +0000220
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000221 if (-1 == PySequence_DelSlice(a1, a2, a3))
222 return NULL;
Guido van Rossumc9fb47e1996-08-21 17:40:51 +0000223
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000224 Py_RETURN_NONE;
Guido van Rossumc9fb47e1996-08-21 17:40:51 +0000225}
226
Guido van Rossum037b9401996-07-30 16:55:54 +0000227#undef spam1
228#undef spam2
Raymond Hettinger36cd2bf2003-01-03 08:24:58 +0000229#undef spam1o
230#undef spam1o
Neal Norwitz200788c2002-08-13 22:20:41 +0000231#define spam1(OP,DOC) {#OP, OP, METH_VARARGS, PyDoc_STR(DOC)},
Armin Rigoc4308d52005-12-29 14:39:28 +0000232#define spam2(OP,ALTOP,DOC) {#OP, op_##OP, METH_VARARGS, PyDoc_STR(DOC)}, \
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000233 {#ALTOP, op_##OP, METH_VARARGS, PyDoc_STR(DOC)},
Raymond Hettinger36cd2bf2003-01-03 08:24:58 +0000234#define spam1o(OP,DOC) {#OP, OP, METH_O, PyDoc_STR(DOC)},
Armin Rigoc4308d52005-12-29 14:39:28 +0000235#define spam2o(OP,ALTOP,DOC) {#OP, op_##OP, METH_O, PyDoc_STR(DOC)}, \
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000236 {#ALTOP, op_##OP, METH_O, PyDoc_STR(DOC)},
Guido van Rossum037b9401996-07-30 16:55:54 +0000237
238static struct PyMethodDef operator_methods[] = {
Guido van Rossum037b9401996-07-30 16:55:54 +0000239
Raymond Hettinger36cd2bf2003-01-03 08:24:58 +0000240spam1o(isCallable,
Guido van Rossum832f6d21998-05-22 18:12:59 +0000241 "isCallable(a) -- Same as callable(a).")
Raymond Hettinger36cd2bf2003-01-03 08:24:58 +0000242spam1o(isNumberType,
Guido van Rossum77f6a652002-04-03 22:41:51 +0000243 "isNumberType(a) -- Return True if a has a numeric type, False otherwise.")
Raymond Hettinger36cd2bf2003-01-03 08:24:58 +0000244spam1o(isSequenceType,
Guido van Rossum77f6a652002-04-03 22:41:51 +0000245 "isSequenceType(a) -- Return True if a has a sequence type, False otherwise.")
Raymond Hettinger36cd2bf2003-01-03 08:24:58 +0000246spam1o(truth,
Guido van Rossum77f6a652002-04-03 22:41:51 +0000247 "truth(a) -- Return True if a is true, False otherwise.")
Fred Drakeea4d3f02000-09-17 16:09:27 +0000248spam2(contains,__contains__,
Guido van Rossum832f6d21998-05-22 18:12:59 +0000249 "contains(a, b) -- Same as b in a (note reversed operands).")
Fred Drakeea4d3f02000-09-17 16:09:27 +0000250spam1(sequenceIncludes,
251 "sequenceIncludes(a, b) -- Same as b in a (note reversed operands; deprecated).")
Guido van Rossum17202301996-08-19 22:01:39 +0000252spam1(indexOf,
Guido van Rossum832f6d21998-05-22 18:12:59 +0000253 "indexOf(a, b) -- Return the first index of b in a.")
Guido van Rossum17202301996-08-19 22:01:39 +0000254spam1(countOf,
255 "countOf(a, b) -- Return the number of times b occurs in a.")
Raymond Hettinger36cd2bf2003-01-03 08:24:58 +0000256spam1o(isMappingType,
Guido van Rossum77f6a652002-04-03 22:41:51 +0000257 "isMappingType(a) -- Return True if a has a mapping type, False otherwise.")
Guido van Rossum037b9401996-07-30 16:55:54 +0000258
Raymond Hettinger9543b342003-01-18 23:22:20 +0000259spam1(is_, "is_(a, b) -- Same as a is b.")
260spam1(is_not, "is_not(a, b) -- Same as a is not b.")
Neal Norwitz8a87f5d2006-08-12 17:03:09 +0000261spam2o(index, __index__, "index(a) -- Same as a.__index__()")
Guido van Rossum832f6d21998-05-22 18:12:59 +0000262spam2(add,__add__, "add(a, b) -- Same as a + b.")
263spam2(sub,__sub__, "sub(a, b) -- Same as a - b.")
264spam2(mul,__mul__, "mul(a, b) -- Same as a * b.")
Fred Drake428e75f2001-08-09 20:14:34 +0000265spam2(div,__div__, "div(a, b) -- Same as a / b when __future__.division is not in effect.")
266spam2(floordiv,__floordiv__, "floordiv(a, b) -- Same as a // b.")
267spam2(truediv,__truediv__, "truediv(a, b) -- Same as a / b when __future__.division is in effect.")
Guido van Rossum832f6d21998-05-22 18:12:59 +0000268spam2(mod,__mod__, "mod(a, b) -- Same as a % b.")
Raymond Hettinger36cd2bf2003-01-03 08:24:58 +0000269spam2o(neg,__neg__, "neg(a) -- Same as -a.")
270spam2o(pos,__pos__, "pos(a) -- Same as +a.")
271spam2o(abs,__abs__, "abs(a) -- Same as abs(a).")
272spam2o(inv,__inv__, "inv(a) -- Same as ~a.")
273spam2o(invert,__invert__, "invert(a) -- Same as ~a.")
Guido van Rossum832f6d21998-05-22 18:12:59 +0000274spam2(lshift,__lshift__, "lshift(a, b) -- Same as a << b.")
275spam2(rshift,__rshift__, "rshift(a, b) -- Same as a >> b.")
Raymond Hettinger36cd2bf2003-01-03 08:24:58 +0000276spam2o(not_,__not__, "not_(a) -- Same as not a.")
Guido van Rossum832f6d21998-05-22 18:12:59 +0000277spam2(and_,__and__, "and_(a, b) -- Same as a & b.")
278spam2(xor,__xor__, "xor(a, b) -- Same as a ^ b.")
279spam2(or_,__or__, "or_(a, b) -- Same as a | b.")
Georg Brandlefc28582009-11-04 07:38:12 +0000280spam2(iadd,__iadd__, "a = iadd(a, b) -- Same as a += b.")
281spam2(isub,__isub__, "a = isub(a, b) -- Same as a -= b.")
282spam2(imul,__imul__, "a = imul(a, b) -- Same as a *= b.")
283spam2(idiv,__idiv__, "a = idiv(a, b) -- Same as a /= b when __future__.division is not in effect.")
284spam2(ifloordiv,__ifloordiv__, "a = ifloordiv(a, b) -- Same as a //= b.")
285spam2(itruediv,__itruediv__, "a = itruediv(a, b) -- Same as a /= b when __future__.division is in effect.")
286spam2(imod,__imod__, "a = imod(a, b) -- Same as a %= b.")
287spam2(ilshift,__ilshift__, "a = ilshift(a, b) -- Same as a <<= b.")
288spam2(irshift,__irshift__, "a = irshift(a, b) -- Same as a >>= b.")
289spam2(iand,__iand__, "a = iand(a, b) -- Same as a &= b.")
290spam2(ixor,__ixor__, "a = ixor(a, b) -- Same as a ^= b.")
291spam2(ior,__ior__, "a = ior(a, b) -- Same as a |= b.")
Guido van Rossum17202301996-08-19 22:01:39 +0000292spam2(concat,__concat__,
Guido van Rossum832f6d21998-05-22 18:12:59 +0000293 "concat(a, b) -- Same as a + b, for a and b sequences.")
Guido van Rossum17202301996-08-19 22:01:39 +0000294spam2(repeat,__repeat__,
Guido van Rossum36a484f1996-12-05 19:01:16 +0000295 "repeat(a, b) -- Return a * b, where a is a sequence, and b is an integer.")
Armin Rigof5bd3b42005-12-29 16:50:42 +0000296spam2(iconcat,__iconcat__,
Georg Brandlefc28582009-11-04 07:38:12 +0000297 "a = iconcat(a, b) -- Same as a += b, for a and b sequences.")
Armin Rigof5bd3b42005-12-29 16:50:42 +0000298spam2(irepeat,__irepeat__,
Georg Brandlefc28582009-11-04 07:38:12 +0000299 "a = irepeat(a, b) -- Same as a *= b, where a is a sequence, and b is an integer.")
Guido van Rossum17202301996-08-19 22:01:39 +0000300spam2(getitem,__getitem__,
Guido van Rossum832f6d21998-05-22 18:12:59 +0000301 "getitem(a, b) -- Same as a[b].")
Guido van Rossum17202301996-08-19 22:01:39 +0000302spam2(setitem,__setitem__,
Guido van Rossum832f6d21998-05-22 18:12:59 +0000303 "setitem(a, b, c) -- Same as a[b] = c.")
Guido van Rossumc9fb47e1996-08-21 17:40:51 +0000304spam2(delitem,__delitem__,
Guido van Rossum832f6d21998-05-22 18:12:59 +0000305 "delitem(a, b) -- Same as del a[b].")
Armin Rigof5bd3b42005-12-29 16:50:42 +0000306spam2(pow,__pow__, "pow(a, b) -- Same as a ** b.")
Georg Brandlefc28582009-11-04 07:38:12 +0000307spam2(ipow,__ipow__, "a = ipow(a, b) -- Same as a **= b.")
Guido van Rossum17202301996-08-19 22:01:39 +0000308spam2(getslice,__getslice__,
Guido van Rossum832f6d21998-05-22 18:12:59 +0000309 "getslice(a, b, c) -- Same as a[b:c].")
Guido van Rossum17202301996-08-19 22:01:39 +0000310spam2(setslice,__setslice__,
Guido van Rossum832f6d21998-05-22 18:12:59 +0000311"setslice(a, b, c, d) -- Same as a[b:c] = d.")
Guido van Rossumc9fb47e1996-08-21 17:40:51 +0000312spam2(delslice,__delslice__,
Guido van Rossum832f6d21998-05-22 18:12:59 +0000313"delslice(a, b, c) -- Same as del a[b:c].")
Fred Drake428e75f2001-08-09 20:14:34 +0000314spam2(lt,__lt__, "lt(a, b) -- Same as a<b.")
315spam2(le,__le__, "le(a, b) -- Same as a<=b.")
316spam2(eq,__eq__, "eq(a, b) -- Same as a==b.")
317spam2(ne,__ne__, "ne(a, b) -- Same as a!=b.")
318spam2(gt,__gt__, "gt(a, b) -- Same as a>b.")
319spam2(ge,__ge__, "ge(a, b) -- Same as a>=b.")
Guido van Rossum037b9401996-07-30 16:55:54 +0000320
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000321 {NULL, NULL} /* sentinel */
Guido van Rossum037b9401996-07-30 16:55:54 +0000322
Guido van Rossum037b9401996-07-30 16:55:54 +0000323};
324
Raymond Hettinger166958b2003-12-01 13:18:39 +0000325/* itemgetter object **********************************************************/
Guido van Rossum037b9401996-07-30 16:55:54 +0000326
Raymond Hettinger166958b2003-12-01 13:18:39 +0000327typedef struct {
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000328 PyObject_HEAD
329 Py_ssize_t nitems;
330 PyObject *item;
Raymond Hettinger166958b2003-12-01 13:18:39 +0000331} itemgetterobject;
332
333static PyTypeObject itemgetter_type;
334
335static PyObject *
336itemgetter_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
337{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000338 itemgetterobject *ig;
339 PyObject *item;
340 Py_ssize_t nitems;
Raymond Hettinger166958b2003-12-01 13:18:39 +0000341
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000342 if (!_PyArg_NoKeywords("itemgetter()", kwds))
343 return NULL;
Georg Brandl02c42872005-08-26 06:42:30 +0000344
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000345 nitems = PyTuple_GET_SIZE(args);
346 if (nitems <= 1) {
347 if (!PyArg_UnpackTuple(args, "itemgetter", 1, 1, &item))
348 return NULL;
349 } else
350 item = args;
Raymond Hettinger166958b2003-12-01 13:18:39 +0000351
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000352 /* create itemgetterobject structure */
353 ig = PyObject_GC_New(itemgetterobject, &itemgetter_type);
354 if (ig == NULL)
355 return NULL;
Raymond Hettinger166958b2003-12-01 13:18:39 +0000356
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000357 Py_INCREF(item);
358 ig->item = item;
359 ig->nitems = nitems;
360
361 PyObject_GC_Track(ig);
362 return (PyObject *)ig;
Raymond Hettinger166958b2003-12-01 13:18:39 +0000363}
364
365static void
366itemgetter_dealloc(itemgetterobject *ig)
367{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000368 PyObject_GC_UnTrack(ig);
369 Py_XDECREF(ig->item);
370 PyObject_GC_Del(ig);
Raymond Hettinger166958b2003-12-01 13:18:39 +0000371}
372
373static int
374itemgetter_traverse(itemgetterobject *ig, visitproc visit, void *arg)
375{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000376 Py_VISIT(ig->item);
377 return 0;
Raymond Hettinger166958b2003-12-01 13:18:39 +0000378}
379
380static PyObject *
381itemgetter_call(itemgetterobject *ig, PyObject *args, PyObject *kw)
382{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000383 PyObject *obj, *result;
384 Py_ssize_t i, nitems=ig->nitems;
Raymond Hettinger166958b2003-12-01 13:18:39 +0000385
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000386 if (!PyArg_UnpackTuple(args, "itemgetter", 1, 1, &obj))
387 return NULL;
388 if (nitems == 1)
389 return PyObject_GetItem(obj, ig->item);
Raymond Hettinger984f9bb2005-03-09 16:38:48 +0000390
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000391 assert(PyTuple_Check(ig->item));
392 assert(PyTuple_GET_SIZE(ig->item) == nitems);
Raymond Hettinger984f9bb2005-03-09 16:38:48 +0000393
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000394 result = PyTuple_New(nitems);
395 if (result == NULL)
396 return NULL;
Raymond Hettinger984f9bb2005-03-09 16:38:48 +0000397
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000398 for (i=0 ; i < nitems ; i++) {
399 PyObject *item, *val;
400 item = PyTuple_GET_ITEM(ig->item, i);
401 val = PyObject_GetItem(obj, item);
402 if (val == NULL) {
403 Py_DECREF(result);
404 return NULL;
405 }
406 PyTuple_SET_ITEM(result, i, val);
407 }
408 return result;
Raymond Hettinger166958b2003-12-01 13:18:39 +0000409}
410
411PyDoc_STRVAR(itemgetter_doc,
Raymond Hettinger984f9bb2005-03-09 16:38:48 +0000412"itemgetter(item, ...) --> itemgetter object\n\
Raymond Hettinger166958b2003-12-01 13:18:39 +0000413\n\
Raymond Hettinger984f9bb2005-03-09 16:38:48 +0000414Return a callable object that fetches the given item(s) from its operand.\n\
415After, f=itemgetter(2), the call f(r) returns r[2].\n\
416After, g=itemgetter(2,5,3), the call g(r) returns (r[2], r[5], r[3])");
Raymond Hettinger166958b2003-12-01 13:18:39 +0000417
418static PyTypeObject itemgetter_type = {
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000419 PyVarObject_HEAD_INIT(NULL, 0)
420 "operator.itemgetter", /* tp_name */
421 sizeof(itemgetterobject), /* tp_basicsize */
422 0, /* tp_itemsize */
423 /* methods */
424 (destructor)itemgetter_dealloc, /* tp_dealloc */
425 0, /* tp_print */
426 0, /* tp_getattr */
427 0, /* tp_setattr */
428 0, /* tp_compare */
429 0, /* tp_repr */
430 0, /* tp_as_number */
431 0, /* tp_as_sequence */
432 0, /* tp_as_mapping */
433 0, /* tp_hash */
434 (ternaryfunc)itemgetter_call, /* tp_call */
435 0, /* tp_str */
436 PyObject_GenericGetAttr, /* tp_getattro */
437 0, /* tp_setattro */
438 0, /* tp_as_buffer */
439 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */
440 itemgetter_doc, /* tp_doc */
441 (traverseproc)itemgetter_traverse, /* tp_traverse */
442 0, /* tp_clear */
443 0, /* tp_richcompare */
444 0, /* tp_weaklistoffset */
445 0, /* tp_iter */
446 0, /* tp_iternext */
447 0, /* tp_methods */
448 0, /* tp_members */
449 0, /* tp_getset */
450 0, /* tp_base */
451 0, /* tp_dict */
452 0, /* tp_descr_get */
453 0, /* tp_descr_set */
454 0, /* tp_dictoffset */
455 0, /* tp_init */
456 0, /* tp_alloc */
457 itemgetter_new, /* tp_new */
458 0, /* tp_free */
Raymond Hettinger166958b2003-12-01 13:18:39 +0000459};
460
461
462/* attrgetter object **********************************************************/
463
464typedef struct {
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000465 PyObject_HEAD
466 Py_ssize_t nattrs;
467 PyObject *attr;
Raymond Hettinger166958b2003-12-01 13:18:39 +0000468} attrgetterobject;
469
470static PyTypeObject attrgetter_type;
471
472static PyObject *
473attrgetter_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
474{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000475 attrgetterobject *ag;
476 PyObject *attr;
477 Py_ssize_t nattrs;
Raymond Hettinger166958b2003-12-01 13:18:39 +0000478
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000479 if (!_PyArg_NoKeywords("attrgetter()", kwds))
480 return NULL;
Georg Brandl02c42872005-08-26 06:42:30 +0000481
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000482 nattrs = PyTuple_GET_SIZE(args);
483 if (nattrs <= 1) {
484 if (!PyArg_UnpackTuple(args, "attrgetter", 1, 1, &attr))
485 return NULL;
486 } else
487 attr = args;
Raymond Hettinger166958b2003-12-01 13:18:39 +0000488
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000489 /* create attrgetterobject structure */
490 ag = PyObject_GC_New(attrgetterobject, &attrgetter_type);
491 if (ag == NULL)
492 return NULL;
Raymond Hettinger166958b2003-12-01 13:18:39 +0000493
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000494 Py_INCREF(attr);
495 ag->attr = attr;
496 ag->nattrs = nattrs;
497
498 PyObject_GC_Track(ag);
499 return (PyObject *)ag;
Raymond Hettinger166958b2003-12-01 13:18:39 +0000500}
501
502static void
503attrgetter_dealloc(attrgetterobject *ag)
504{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000505 PyObject_GC_UnTrack(ag);
506 Py_XDECREF(ag->attr);
507 PyObject_GC_Del(ag);
Raymond Hettinger166958b2003-12-01 13:18:39 +0000508}
509
510static int
511attrgetter_traverse(attrgetterobject *ag, visitproc visit, void *arg)
512{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000513 Py_VISIT(ag->attr);
514 return 0;
Raymond Hettinger166958b2003-12-01 13:18:39 +0000515}
516
517static PyObject *
Georg Brandle2065c62008-02-23 23:02:23 +0000518dotted_getattr(PyObject *obj, PyObject *attr)
519{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000520 char *s, *p;
Georg Brandle2065c62008-02-23 23:02:23 +0000521
522#ifdef Py_USING_UNICODE
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000523 if (PyUnicode_Check(attr)) {
524 attr = _PyUnicode_AsDefaultEncodedString(attr, NULL);
525 if (attr == NULL)
526 return NULL;
527 }
Georg Brandle2065c62008-02-23 23:02:23 +0000528#endif
Georg Brandle2065c62008-02-23 23:02:23 +0000529
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000530 if (!PyString_Check(attr)) {
531 PyErr_SetString(PyExc_TypeError,
532 "attribute name must be a string");
533 return NULL;
534 }
Georg Brandle2065c62008-02-23 23:02:23 +0000535
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000536 s = PyString_AS_STRING(attr);
537 Py_INCREF(obj);
538 for (;;) {
539 PyObject *newobj, *str;
540 p = strchr(s, '.');
541 str = p ? PyString_FromStringAndSize(s, (p-s)) :
542 PyString_FromString(s);
543 if (str == NULL) {
544 Py_DECREF(obj);
545 return NULL;
546 }
547 newobj = PyObject_GetAttr(obj, str);
548 Py_DECREF(str);
549 Py_DECREF(obj);
550 if (newobj == NULL)
551 return NULL;
552 obj = newobj;
553 if (p == NULL) break;
554 s = p+1;
555 }
556
557 return obj;
Georg Brandle2065c62008-02-23 23:02:23 +0000558}
559
560static PyObject *
Raymond Hettinger166958b2003-12-01 13:18:39 +0000561attrgetter_call(attrgetterobject *ag, PyObject *args, PyObject *kw)
562{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000563 PyObject *obj, *result;
564 Py_ssize_t i, nattrs=ag->nattrs;
Raymond Hettinger166958b2003-12-01 13:18:39 +0000565
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000566 if (!PyArg_UnpackTuple(args, "attrgetter", 1, 1, &obj))
567 return NULL;
568 if (ag->nattrs == 1)
569 return dotted_getattr(obj, ag->attr);
Raymond Hettinger984f9bb2005-03-09 16:38:48 +0000570
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000571 assert(PyTuple_Check(ag->attr));
572 assert(PyTuple_GET_SIZE(ag->attr) == nattrs);
Raymond Hettinger984f9bb2005-03-09 16:38:48 +0000573
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000574 result = PyTuple_New(nattrs);
575 if (result == NULL)
576 return NULL;
Raymond Hettinger984f9bb2005-03-09 16:38:48 +0000577
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000578 for (i=0 ; i < nattrs ; i++) {
579 PyObject *attr, *val;
580 attr = PyTuple_GET_ITEM(ag->attr, i);
581 val = dotted_getattr(obj, attr);
582 if (val == NULL) {
583 Py_DECREF(result);
584 return NULL;
585 }
586 PyTuple_SET_ITEM(result, i, val);
587 }
588 return result;
Raymond Hettinger166958b2003-12-01 13:18:39 +0000589}
590
591PyDoc_STRVAR(attrgetter_doc,
Raymond Hettinger984f9bb2005-03-09 16:38:48 +0000592"attrgetter(attr, ...) --> attrgetter object\n\
Raymond Hettinger166958b2003-12-01 13:18:39 +0000593\n\
Raymond Hettinger984f9bb2005-03-09 16:38:48 +0000594Return a callable object that fetches the given attribute(s) from its operand.\n\
595After, f=attrgetter('name'), the call f(r) returns r.name.\n\
Georg Brandle2065c62008-02-23 23:02:23 +0000596After, g=attrgetter('name', 'date'), the call g(r) returns (r.name, r.date).\n\
597After, h=attrgetter('name.first', 'name.last'), the call h(r) returns\n\
598(r.name.first, r.name.last).");
Raymond Hettinger166958b2003-12-01 13:18:39 +0000599
600static PyTypeObject attrgetter_type = {
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000601 PyVarObject_HEAD_INIT(NULL, 0)
602 "operator.attrgetter", /* tp_name */
603 sizeof(attrgetterobject), /* tp_basicsize */
604 0, /* tp_itemsize */
605 /* methods */
606 (destructor)attrgetter_dealloc, /* tp_dealloc */
607 0, /* tp_print */
608 0, /* tp_getattr */
609 0, /* tp_setattr */
610 0, /* tp_compare */
611 0, /* tp_repr */
612 0, /* tp_as_number */
613 0, /* tp_as_sequence */
614 0, /* tp_as_mapping */
615 0, /* tp_hash */
616 (ternaryfunc)attrgetter_call, /* tp_call */
617 0, /* tp_str */
618 PyObject_GenericGetAttr, /* tp_getattro */
619 0, /* tp_setattro */
620 0, /* tp_as_buffer */
621 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */
622 attrgetter_doc, /* tp_doc */
623 (traverseproc)attrgetter_traverse, /* tp_traverse */
624 0, /* tp_clear */
625 0, /* tp_richcompare */
626 0, /* tp_weaklistoffset */
627 0, /* tp_iter */
628 0, /* tp_iternext */
629 0, /* tp_methods */
630 0, /* tp_members */
631 0, /* tp_getset */
632 0, /* tp_base */
633 0, /* tp_dict */
634 0, /* tp_descr_get */
635 0, /* tp_descr_set */
636 0, /* tp_dictoffset */
637 0, /* tp_init */
638 0, /* tp_alloc */
639 attrgetter_new, /* tp_new */
640 0, /* tp_free */
Raymond Hettinger166958b2003-12-01 13:18:39 +0000641};
Georg Brandlebcfd112008-02-23 23:04:35 +0000642
643
644/* methodcaller object **********************************************************/
645
646typedef struct {
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000647 PyObject_HEAD
648 PyObject *name;
649 PyObject *args;
650 PyObject *kwds;
Georg Brandlebcfd112008-02-23 23:04:35 +0000651} methodcallerobject;
652
653static PyTypeObject methodcaller_type;
654
655static PyObject *
656methodcaller_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
657{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000658 methodcallerobject *mc;
659 PyObject *name, *newargs;
Georg Brandlebcfd112008-02-23 23:04:35 +0000660
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000661 if (PyTuple_GET_SIZE(args) < 1) {
662 PyErr_SetString(PyExc_TypeError, "methodcaller needs at least "
663 "one argument, the method name");
664 return NULL;
665 }
Georg Brandlebcfd112008-02-23 23:04:35 +0000666
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000667 /* create methodcallerobject structure */
668 mc = PyObject_GC_New(methodcallerobject, &methodcaller_type);
669 if (mc == NULL)
670 return NULL;
Georg Brandlebcfd112008-02-23 23:04:35 +0000671
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000672 newargs = PyTuple_GetSlice(args, 1, PyTuple_GET_SIZE(args));
673 if (newargs == NULL) {
674 Py_DECREF(mc);
675 return NULL;
676 }
677 mc->args = newargs;
Georg Brandlebcfd112008-02-23 23:04:35 +0000678
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000679 name = PyTuple_GET_ITEM(args, 0);
680 Py_INCREF(name);
681 mc->name = name;
Georg Brandlebcfd112008-02-23 23:04:35 +0000682
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000683 Py_XINCREF(kwds);
684 mc->kwds = kwds;
Georg Brandlebcfd112008-02-23 23:04:35 +0000685
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000686 PyObject_GC_Track(mc);
687 return (PyObject *)mc;
Georg Brandlebcfd112008-02-23 23:04:35 +0000688}
689
690static void
691methodcaller_dealloc(methodcallerobject *mc)
692{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000693 PyObject_GC_UnTrack(mc);
694 Py_XDECREF(mc->name);
695 Py_XDECREF(mc->args);
696 Py_XDECREF(mc->kwds);
697 PyObject_GC_Del(mc);
Georg Brandlebcfd112008-02-23 23:04:35 +0000698}
699
700static int
701methodcaller_traverse(methodcallerobject *mc, visitproc visit, void *arg)
702{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000703 Py_VISIT(mc->args);
704 Py_VISIT(mc->kwds);
705 return 0;
Georg Brandlebcfd112008-02-23 23:04:35 +0000706}
707
708static PyObject *
709methodcaller_call(methodcallerobject *mc, PyObject *args, PyObject *kw)
710{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000711 PyObject *method, *obj, *result;
Georg Brandlebcfd112008-02-23 23:04:35 +0000712
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000713 if (!PyArg_UnpackTuple(args, "methodcaller", 1, 1, &obj))
714 return NULL;
715 method = PyObject_GetAttr(obj, mc->name);
716 if (method == NULL)
717 return NULL;
718 result = PyObject_Call(method, mc->args, mc->kwds);
719 Py_DECREF(method);
720 return result;
Georg Brandlebcfd112008-02-23 23:04:35 +0000721}
722
723PyDoc_STRVAR(methodcaller_doc,
724"methodcaller(name, ...) --> methodcaller object\n\
725\n\
726Return a callable object that calls the given method on its operand.\n\
727After, f = methodcaller('name'), the call f(r) returns r.name().\n\
728After, g = methodcaller('name', 'date', foo=1), the call g(r) returns\n\
729r.name('date', foo=1).");
730
731static PyTypeObject methodcaller_type = {
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000732 PyVarObject_HEAD_INIT(NULL, 0)
733 "operator.methodcaller", /* tp_name */
734 sizeof(methodcallerobject), /* tp_basicsize */
735 0, /* tp_itemsize */
736 /* methods */
737 (destructor)methodcaller_dealloc, /* tp_dealloc */
738 0, /* tp_print */
739 0, /* tp_getattr */
740 0, /* tp_setattr */
741 0, /* tp_compare */
742 0, /* tp_repr */
743 0, /* tp_as_number */
744 0, /* tp_as_sequence */
745 0, /* tp_as_mapping */
746 0, /* tp_hash */
747 (ternaryfunc)methodcaller_call, /* tp_call */
748 0, /* tp_str */
749 PyObject_GenericGetAttr, /* tp_getattro */
750 0, /* tp_setattro */
751 0, /* tp_as_buffer */
752 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
753 methodcaller_doc, /* tp_doc */
754 (traverseproc)methodcaller_traverse, /* tp_traverse */
755 0, /* tp_clear */
756 0, /* tp_richcompare */
757 0, /* tp_weaklistoffset */
758 0, /* tp_iter */
759 0, /* tp_iternext */
760 0, /* tp_methods */
761 0, /* tp_members */
762 0, /* tp_getset */
763 0, /* tp_base */
764 0, /* tp_dict */
765 0, /* tp_descr_get */
766 0, /* tp_descr_set */
767 0, /* tp_dictoffset */
768 0, /* tp_init */
769 0, /* tp_alloc */
770 methodcaller_new, /* tp_new */
771 0, /* tp_free */
Georg Brandlebcfd112008-02-23 23:04:35 +0000772};
773
774
Guido van Rossum037b9401996-07-30 16:55:54 +0000775/* Initialization function for the module (*must* be called initoperator) */
776
Mark Hammondfe51c6d2002-08-02 02:27:13 +0000777PyMODINIT_FUNC
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000778initoperator(void)
Guido van Rossum037b9401996-07-30 16:55:54 +0000779{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000780 PyObject *m;
Raymond Hettinger166958b2003-12-01 13:18:39 +0000781
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000782 /* Create the module and add the functions */
783 m = Py_InitModule4("operator", operator_methods, operator_doc,
784 (PyObject*)NULL, PYTHON_API_VERSION);
785 if (m == NULL)
786 return;
Raymond Hettinger166958b2003-12-01 13:18:39 +0000787
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000788 if (PyType_Ready(&itemgetter_type) < 0)
789 return;
790 Py_INCREF(&itemgetter_type);
791 PyModule_AddObject(m, "itemgetter", (PyObject *)&itemgetter_type);
Georg Brandlebcfd112008-02-23 23:04:35 +0000792
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000793 if (PyType_Ready(&attrgetter_type) < 0)
794 return;
795 Py_INCREF(&attrgetter_type);
796 PyModule_AddObject(m, "attrgetter", (PyObject *)&attrgetter_type);
797
798 if (PyType_Ready(&methodcaller_type) < 0)
799 return;
800 Py_INCREF(&methodcaller_type);
801 PyModule_AddObject(m, "methodcaller", (PyObject *)&methodcaller_type);
Guido van Rossum037b9401996-07-30 16:55:54 +0000802}