| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "Python.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(operator_doc, | 
					
						
							|  |  |  | "Operator interface.\n\
 | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | \n\ | 
					
						
							|  |  |  | This module exports a set of functions implemented in C corresponding\n\ | 
					
						
							|  |  |  | to the intrinsic operators of Python.  For example, operator.add(x, y)\n\ | 
					
						
							|  |  |  | is equivalent to the expression x+y.  The function names are those\n\ | 
					
						
							|  |  |  | used for special class methods; variants without leading and trailing\n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | '__' are also provided for convenience."); | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-03 08:24:58 +00:00
										 |  |  | #define spam1(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a1) { \
 | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  |   return AOP(a1); } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 04:12:08 +00:00
										 |  |  | #define spam2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
 | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  |   PyObject *a1, *a2; \ | 
					
						
							| 
									
										
										
										
											2002-12-29 16:33:45 +00:00
										 |  |  |   if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \ | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  |   return AOP(a1,a2); } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 04:12:08 +00:00
										 |  |  | #define spamoi(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
 | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  |   PyObject *a1; int a2; \ | 
					
						
							| 
									
										
										
										
											2000-09-17 16:09:27 +00:00
										 |  |  |   if(! PyArg_ParseTuple(a,"Oi:" #OP,&a1,&a2)) return NULL; \ | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  |   return AOP(a1,a2); } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 04:12:08 +00:00
										 |  |  | #define spam2n(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
 | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  |   PyObject *a1, *a2; \ | 
					
						
							| 
									
										
										
										
											2002-12-29 16:33:45 +00:00
										 |  |  |   if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \ | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  |   if(-1 == AOP(a1,a2)) return NULL; \ | 
					
						
							|  |  |  |   Py_INCREF(Py_None); \ | 
					
						
							|  |  |  |   return Py_None; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 04:12:08 +00:00
										 |  |  | #define spam3n(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
 | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  |   PyObject *a1, *a2, *a3; \ | 
					
						
							| 
									
										
										
										
											2002-12-29 16:33:45 +00:00
										 |  |  |   if(! PyArg_UnpackTuple(a,#OP,3,3,&a1,&a2,&a3)) return NULL; \ | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  |   if(-1 == AOP(a1,a2,a3)) return NULL; \ | 
					
						
							|  |  |  |   Py_INCREF(Py_None); \ | 
					
						
							|  |  |  |   return Py_None; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-03 08:24:58 +00:00
										 |  |  | #define spami(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a1) { \
 | 
					
						
							|  |  |  |   long r; \ | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  |   if(-1 == (r=AOP(a1))) return NULL; \ | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  |   return PyBool_FromLong(r); } | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 04:12:08 +00:00
										 |  |  | #define spami2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
 | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  |   PyObject *a1, *a2; long r; \ | 
					
						
							| 
									
										
										
										
											2002-12-29 16:33:45 +00:00
										 |  |  |   if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \ | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  |   if(-1 == (r=AOP(a1,a2))) return NULL; \ | 
					
						
							|  |  |  |   return PyInt_FromLong(r); } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | #define spami2b(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
 | 
					
						
							|  |  |  |   PyObject *a1, *a2; long r; \ | 
					
						
							| 
									
										
										
										
											2002-12-29 16:33:45 +00:00
										 |  |  |   if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \ | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  |   if(-1 == (r=AOP(a1,a2))) return NULL; \ | 
					
						
							|  |  |  |   return PyBool_FromLong(r); } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-09 20:14:34 +00:00
										 |  |  | #define spamrc(OP,A) static PyObject *OP(PyObject *s, PyObject *a) { \
 | 
					
						
							|  |  |  |   PyObject *a1, *a2; \ | 
					
						
							| 
									
										
										
										
											2002-12-29 16:33:45 +00:00
										 |  |  |   if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \ | 
					
						
							| 
									
										
										
										
											2001-08-09 20:14:34 +00:00
										 |  |  |   return PyObject_RichCompare(a1,a2,A); } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | spami(isCallable       , PyCallable_Check) | 
					
						
							|  |  |  | spami(isNumberType     , PyNumber_Check) | 
					
						
							|  |  |  | spami(truth            , PyObject_IsTrue) | 
					
						
							| 
									
										
										
										
											1996-08-21 17:40:51 +00:00
										 |  |  | spam2(op_add           , PyNumber_Add) | 
					
						
							|  |  |  | spam2(op_sub           , PyNumber_Subtract) | 
					
						
							|  |  |  | spam2(op_mul           , PyNumber_Multiply) | 
					
						
							|  |  |  | spam2(op_div           , PyNumber_Divide) | 
					
						
							| 
									
										
										
										
											2001-08-09 20:14:34 +00:00
										 |  |  | spam2(op_floordiv      , PyNumber_FloorDivide) | 
					
						
							|  |  |  | spam2(op_truediv       , PyNumber_TrueDivide) | 
					
						
							| 
									
										
										
										
											1996-08-21 17:40:51 +00:00
										 |  |  | spam2(op_mod           , PyNumber_Remainder) | 
					
						
							|  |  |  | spam1(op_neg           , PyNumber_Negative) | 
					
						
							|  |  |  | spam1(op_pos           , PyNumber_Positive) | 
					
						
							|  |  |  | spam1(op_abs           , PyNumber_Absolute) | 
					
						
							|  |  |  | spam1(op_inv           , PyNumber_Invert) | 
					
						
							| 
									
										
										
										
											2000-09-17 16:09:27 +00:00
										 |  |  | spam1(op_invert        , PyNumber_Invert) | 
					
						
							| 
									
										
										
										
											1996-08-21 17:40:51 +00:00
										 |  |  | spam2(op_lshift        , PyNumber_Lshift) | 
					
						
							|  |  |  | spam2(op_rshift        , PyNumber_Rshift) | 
					
						
							| 
									
										
										
										
											1998-04-09 17:54:26 +00:00
										 |  |  | spami(op_not_          , PyObject_Not) | 
					
						
							| 
									
										
										
										
											1996-08-21 17:40:51 +00:00
										 |  |  | spam2(op_and_          , PyNumber_And) | 
					
						
							|  |  |  | spam2(op_xor           , PyNumber_Xor) | 
					
						
							|  |  |  | spam2(op_or_           , PyNumber_Or) | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | spami(isSequenceType   , PySequence_Check) | 
					
						
							| 
									
										
										
										
											1996-08-21 17:40:51 +00:00
										 |  |  | spam2(op_concat        , PySequence_Concat) | 
					
						
							|  |  |  | spamoi(op_repeat       , PySequence_Repeat) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | spami2b(op_contains     , PySequence_Contains) | 
					
						
							|  |  |  | spami2b(sequenceIncludes, PySequence_Contains) | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | spami2(indexOf         , PySequence_Index) | 
					
						
							|  |  |  | spami2(countOf         , PySequence_Count) | 
					
						
							|  |  |  | spami(isMappingType    , PyMapping_Check) | 
					
						
							| 
									
										
										
										
											1996-08-21 17:40:51 +00:00
										 |  |  | spam2(op_getitem       , PyObject_GetItem) | 
					
						
							|  |  |  | spam2n(op_delitem       , PyObject_DelItem) | 
					
						
							|  |  |  | spam3n(op_setitem      , PyObject_SetItem) | 
					
						
							| 
									
										
										
										
											2001-08-09 20:14:34 +00:00
										 |  |  | spamrc(op_lt           , Py_LT) | 
					
						
							|  |  |  | spamrc(op_le           , Py_LE) | 
					
						
							|  |  |  | spamrc(op_eq           , Py_EQ) | 
					
						
							|  |  |  | spamrc(op_ne           , Py_NE) | 
					
						
							|  |  |  | spamrc(op_gt           , Py_GT) | 
					
						
							|  |  |  | spamrc(op_ge           , Py_GE) | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-19 03:19:09 +00:00
										 |  |  | static PyObject* | 
					
						
							|  |  |  | op_pow(PyObject *s, PyObject *a) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject *a1, *a2; | 
					
						
							| 
									
										
										
										
											2002-12-29 16:33:45 +00:00
										 |  |  | 	if (PyArg_UnpackTuple(a,"pow", 2, 2, &a1, &a2)) | 
					
						
							| 
									
										
										
										
											2002-08-19 03:19:09 +00:00
										 |  |  | 		return PyNumber_Power(a1, a2, Py_None); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-18 23:22:20 +00:00
										 |  |  | static PyObject* | 
					
						
							|  |  |  | is_(PyObject *s, PyObject *a) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject *a1, *a2, *result = NULL; | 
					
						
							|  |  |  | 	if (PyArg_UnpackTuple(a,"is_", 2, 2, &a1, &a2)) { | 
					
						
							|  |  |  | 		result = (a1 == a2) ? Py_True : Py_False; | 
					
						
							|  |  |  | 		Py_INCREF(result); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							|  |  |  | is_not(PyObject *s, PyObject *a) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject *a1, *a2, *result = NULL; | 
					
						
							|  |  |  | 	if (PyArg_UnpackTuple(a,"is_not", 2, 2, &a1, &a2)) { | 
					
						
							|  |  |  | 		result = (a1 != a2) ? Py_True : Py_False; | 
					
						
							|  |  |  | 		Py_INCREF(result); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2000-07-08 04:12:08 +00:00
										 |  |  | op_getslice(PyObject *s, PyObject *a) | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1996-12-18 19:50:00 +00:00
										 |  |  |         PyObject *a1; | 
					
						
							| 
									
										
										
										
											1997-08-28 18:11:05 +00:00
										 |  |  |         int a2,a3; | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-17 16:09:27 +00:00
										 |  |  |         if (!PyArg_ParseTuple(a,"Oii:getslice",&a1,&a2,&a3)) | 
					
						
							| 
									
										
										
										
											1996-12-18 19:50:00 +00:00
										 |  |  |                 return NULL; | 
					
						
							|  |  |  |         return PySequence_GetSlice(a1,a2,a3); | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2000-07-08 04:12:08 +00:00
										 |  |  | op_setslice(PyObject *s, PyObject *a) | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1996-12-18 19:50:00 +00:00
										 |  |  |         PyObject *a1, *a4; | 
					
						
							| 
									
										
										
										
											1997-08-28 18:11:05 +00:00
										 |  |  |         int a2,a3; | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-17 16:09:27 +00:00
										 |  |  |         if (!PyArg_ParseTuple(a,"OiiO:setslice",&a1,&a2,&a3,&a4)) | 
					
						
							| 
									
										
										
										
											1996-12-18 19:50:00 +00:00
										 |  |  |                 return NULL; | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-18 19:50:00 +00:00
										 |  |  |         if (-1 == PySequence_SetSlice(a1,a2,a3,a4)) | 
					
						
							|  |  |  |                 return NULL; | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-18 19:50:00 +00:00
										 |  |  |         Py_INCREF(Py_None); | 
					
						
							|  |  |  |         return Py_None; | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 17:40:51 +00:00
										 |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2000-07-08 04:12:08 +00:00
										 |  |  | op_delslice(PyObject *s, PyObject *a) | 
					
						
							| 
									
										
										
										
											1996-08-21 17:40:51 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1996-12-18 19:50:00 +00:00
										 |  |  |         PyObject *a1; | 
					
						
							| 
									
										
										
										
											1997-08-28 18:11:05 +00:00
										 |  |  |         int a2,a3; | 
					
						
							| 
									
										
										
										
											1996-08-21 17:40:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-17 16:09:27 +00:00
										 |  |  |         if(! PyArg_ParseTuple(a,"Oii:delslice",&a1,&a2,&a3)) | 
					
						
							| 
									
										
										
										
											1996-12-18 19:50:00 +00:00
										 |  |  |                 return NULL; | 
					
						
							| 
									
										
										
										
											1996-08-21 17:40:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-18 19:50:00 +00:00
										 |  |  |         if (-1 == PySequence_DelSlice(a1,a2,a3)) | 
					
						
							|  |  |  |                 return NULL; | 
					
						
							| 
									
										
										
										
											1996-08-21 17:40:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-18 19:50:00 +00:00
										 |  |  |         Py_INCREF(Py_None); | 
					
						
							|  |  |  |         return Py_None; | 
					
						
							| 
									
										
										
										
											1996-08-21 17:40:51 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | #undef spam1
 | 
					
						
							|  |  |  | #undef spam2
 | 
					
						
							| 
									
										
										
										
											2003-01-03 08:24:58 +00:00
										 |  |  | #undef spam1o
 | 
					
						
							|  |  |  | #undef spam1o
 | 
					
						
							| 
									
										
										
										
											2002-08-13 22:20:41 +00:00
										 |  |  | #define spam1(OP,DOC) {#OP, OP, METH_VARARGS, PyDoc_STR(DOC)},
 | 
					
						
							| 
									
										
										
										
											2000-07-08 04:12:08 +00:00
										 |  |  | #define spam2(OP,ALTOP,DOC) {#OP, op_##OP, METH_VARARGS, DOC}, \
 | 
					
						
							| 
									
										
										
										
											2002-08-13 22:20:41 +00:00
										 |  |  | 			   {#ALTOP, op_##OP, METH_VARARGS, PyDoc_STR(DOC)},  | 
					
						
							| 
									
										
										
										
											2003-01-03 08:24:58 +00:00
										 |  |  | #define spam1o(OP,DOC) {#OP, OP, METH_O, PyDoc_STR(DOC)},
 | 
					
						
							|  |  |  | #define spam2o(OP,ALTOP,DOC) {#OP, op_##OP, METH_O, DOC}, \
 | 
					
						
							|  |  |  | 			   {#ALTOP, op_##OP, METH_O, PyDoc_STR(DOC)},  | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static struct PyMethodDef operator_methods[] = { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-03 08:24:58 +00:00
										 |  |  | spam1o(isCallable, | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  |  "isCallable(a) -- Same as callable(a).") | 
					
						
							| 
									
										
										
										
											2003-01-03 08:24:58 +00:00
										 |  |  | spam1o(isNumberType, | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  |  "isNumberType(a) -- Return True if a has a numeric type, False otherwise.") | 
					
						
							| 
									
										
										
										
											2003-01-03 08:24:58 +00:00
										 |  |  | spam1o(isSequenceType, | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  |  "isSequenceType(a) -- Return True if a has a sequence type, False otherwise.") | 
					
						
							| 
									
										
										
										
											2003-01-03 08:24:58 +00:00
										 |  |  | spam1o(truth, | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  |  "truth(a) -- Return True if a is true, False otherwise.") | 
					
						
							| 
									
										
										
										
											2000-09-17 16:09:27 +00:00
										 |  |  | spam2(contains,__contains__, | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  |  "contains(a, b) -- Same as b in a (note reversed operands).") | 
					
						
							| 
									
										
										
										
											2000-09-17 16:09:27 +00:00
										 |  |  | spam1(sequenceIncludes, | 
					
						
							|  |  |  |  "sequenceIncludes(a, b) -- Same as b in a (note reversed operands; deprecated).") | 
					
						
							| 
									
										
										
										
											1996-08-19 22:01:39 +00:00
										 |  |  | spam1(indexOf, | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  |  "indexOf(a, b) -- Return the first index of b in a.") | 
					
						
							| 
									
										
										
										
											1996-08-19 22:01:39 +00:00
										 |  |  | spam1(countOf, | 
					
						
							|  |  |  |  "countOf(a, b) -- Return the number of times b occurs in a.") | 
					
						
							| 
									
										
										
										
											2003-01-03 08:24:58 +00:00
										 |  |  | spam1o(isMappingType, | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  |  "isMappingType(a) -- Return True if a has a mapping type, False otherwise.") | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-18 23:22:20 +00:00
										 |  |  | spam1(is_, "is_(a, b) -- Same as a is b.") | 
					
						
							|  |  |  | spam1(is_not, "is_not(a, b) -- Same as a is not b.") | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  | spam2(add,__add__, "add(a, b) -- Same as a + b.") | 
					
						
							|  |  |  | spam2(sub,__sub__, "sub(a, b) -- Same as a - b.") | 
					
						
							|  |  |  | spam2(mul,__mul__, "mul(a, b) -- Same as a * b.") | 
					
						
							| 
									
										
										
										
											2001-08-09 20:14:34 +00:00
										 |  |  | spam2(div,__div__, "div(a, b) -- Same as a / b when __future__.division is not in effect.") | 
					
						
							|  |  |  | spam2(floordiv,__floordiv__, "floordiv(a, b) -- Same as a // b.") | 
					
						
							|  |  |  | spam2(truediv,__truediv__, "truediv(a, b) -- Same as a / b when __future__.division is in effect.") | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  | spam2(mod,__mod__, "mod(a, b) -- Same as a % b.") | 
					
						
							| 
									
										
										
										
											2003-01-03 08:24:58 +00:00
										 |  |  | spam2o(neg,__neg__, "neg(a) -- Same as -a.") | 
					
						
							|  |  |  | spam2o(pos,__pos__, "pos(a) -- Same as +a.") | 
					
						
							|  |  |  | spam2o(abs,__abs__, "abs(a) -- Same as abs(a).") | 
					
						
							|  |  |  | spam2o(inv,__inv__, "inv(a) -- Same as ~a.") | 
					
						
							|  |  |  | spam2o(invert,__invert__, "invert(a) -- Same as ~a.") | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  | spam2(lshift,__lshift__, "lshift(a, b) -- Same as a << b.") | 
					
						
							|  |  |  | spam2(rshift,__rshift__, "rshift(a, b) -- Same as a >> b.") | 
					
						
							| 
									
										
										
										
											2003-01-03 08:24:58 +00:00
										 |  |  | spam2o(not_,__not__, "not_(a) -- Same as not a.") | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  | spam2(and_,__and__, "and_(a, b) -- Same as a & b.") | 
					
						
							|  |  |  | spam2(xor,__xor__, "xor(a, b) -- Same as a ^ b.") | 
					
						
							|  |  |  | spam2(or_,__or__, "or_(a, b) -- Same as a | b.") | 
					
						
							| 
									
										
										
										
											1996-08-19 22:01:39 +00:00
										 |  |  | spam2(concat,__concat__, | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  |  "concat(a, b) -- Same as a + b, for a and b sequences.") | 
					
						
							| 
									
										
										
										
											1996-08-19 22:01:39 +00:00
										 |  |  | spam2(repeat,__repeat__, | 
					
						
							| 
									
										
										
										
											1996-12-05 19:01:16 +00:00
										 |  |  |  "repeat(a, b) -- Return a * b, where a is a sequence, and b is an integer.") | 
					
						
							| 
									
										
										
										
											1996-08-19 22:01:39 +00:00
										 |  |  | spam2(getitem,__getitem__, | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  |  "getitem(a, b) -- Same as a[b].") | 
					
						
							| 
									
										
										
										
											1996-08-19 22:01:39 +00:00
										 |  |  | spam2(setitem,__setitem__, | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  |  "setitem(a, b, c) -- Same as a[b] = c.") | 
					
						
							| 
									
										
										
										
											1996-08-21 17:40:51 +00:00
										 |  |  | spam2(delitem,__delitem__, | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  |  "delitem(a, b) -- Same as del a[b].") | 
					
						
							| 
									
										
										
										
											2002-08-19 03:19:09 +00:00
										 |  |  | spam2(pow,__pow__, "pow(a, b) -- Same as a**b.") | 
					
						
							| 
									
										
										
										
											1996-08-19 22:01:39 +00:00
										 |  |  | spam2(getslice,__getslice__, | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  |  "getslice(a, b, c) -- Same as a[b:c].") | 
					
						
							| 
									
										
										
										
											1996-08-19 22:01:39 +00:00
										 |  |  | spam2(setslice,__setslice__, | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  | "setslice(a, b, c, d) -- Same as a[b:c] = d.") | 
					
						
							| 
									
										
										
										
											1996-08-21 17:40:51 +00:00
										 |  |  | spam2(delslice,__delslice__, | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  | "delslice(a, b, c) -- Same as del a[b:c].") | 
					
						
							| 
									
										
										
										
											2001-08-09 20:14:34 +00:00
										 |  |  | spam2(lt,__lt__, "lt(a, b) -- Same as a<b.") | 
					
						
							|  |  |  | spam2(le,__le__, "le(a, b) -- Same as a<=b.") | 
					
						
							|  |  |  | spam2(eq,__eq__, "eq(a, b) -- Same as a==b.") | 
					
						
							|  |  |  | spam2(ne,__ne__, "ne(a, b) -- Same as a!=b.") | 
					
						
							|  |  |  | spam2(gt,__gt__, "gt(a, b) -- Same as a>b.") | 
					
						
							|  |  |  | spam2(ge,__ge__, "ge(a, b) -- Same as a>=b.") | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-19 22:01:39 +00:00
										 |  |  | 	{NULL,		NULL}		/* sentinel */ | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-12-01 13:18:39 +00:00
										 |  |  | /* itemgetter object **********************************************************/ | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-12-01 13:18:39 +00:00
										 |  |  | typedef struct { | 
					
						
							|  |  |  | 	PyObject_HEAD | 
					
						
							|  |  |  | 	PyObject *item; | 
					
						
							|  |  |  | } itemgetterobject; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyTypeObject itemgetter_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | itemgetter_new(PyTypeObject *type, PyObject *args, PyObject *kwds) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	itemgetterobject *ig; | 
					
						
							|  |  |  | 	PyObject *item; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!PyArg_UnpackTuple(args, "itemgetter", 1, 1, &item)) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* create itemgetterobject structure */ | 
					
						
							|  |  |  | 	ig = PyObject_GC_New(itemgetterobject, &itemgetter_type); | 
					
						
							|  |  |  | 	if (ig == NULL)  | 
					
						
							|  |  |  | 		return NULL;	 | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	Py_INCREF(item); | 
					
						
							|  |  |  | 	ig->item = item; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	PyObject_GC_Track(ig); | 
					
						
							|  |  |  | 	return (PyObject *)ig; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | itemgetter_dealloc(itemgetterobject *ig) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject_GC_UnTrack(ig); | 
					
						
							|  |  |  | 	Py_XDECREF(ig->item); | 
					
						
							|  |  |  | 	PyObject_GC_Del(ig); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | itemgetter_traverse(itemgetterobject *ig, visitproc visit, void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (ig->item) | 
					
						
							|  |  |  | 		return visit(ig->item, arg); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | itemgetter_call(itemgetterobject *ig, PyObject *args, PyObject *kw) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject * obj; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!PyArg_UnpackTuple(args, "itemgetter", 1, 1, &obj)) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	return PyObject_GetItem(obj, ig->item); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(itemgetter_doc, | 
					
						
							|  |  |  | "itemgetter(item) --> itemgetter object\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | Return a callable object that fetches the given item from its operand.\n\ | 
					
						
							|  |  |  | After, f=itemgetter(2), the call f(b) returns b[2]."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyTypeObject itemgetter_type = { | 
					
						
							|  |  |  | 	PyObject_HEAD_INIT(NULL) | 
					
						
							|  |  |  | 	0,				/* ob_size */ | 
					
						
							| 
									
										
										
										
											2003-12-04 22:17:49 +00:00
										 |  |  | 	"operator.itemgetter",		/* tp_name */ | 
					
						
							| 
									
										
										
										
											2003-12-01 13:18:39 +00:00
										 |  |  | 	sizeof(itemgetterobject),	/* tp_basicsize */ | 
					
						
							|  |  |  | 	0,				/* tp_itemsize */ | 
					
						
							|  |  |  | 	/* methods */ | 
					
						
							|  |  |  | 	(destructor)itemgetter_dealloc,	/* tp_dealloc */ | 
					
						
							|  |  |  | 	0,				/* tp_print */ | 
					
						
							|  |  |  | 	0,				/* tp_getattr */ | 
					
						
							|  |  |  | 	0,				/* tp_setattr */ | 
					
						
							|  |  |  | 	0,				/* tp_compare */ | 
					
						
							|  |  |  | 	0,				/* tp_repr */ | 
					
						
							|  |  |  | 	0,				/* tp_as_number */ | 
					
						
							|  |  |  | 	0,				/* tp_as_sequence */ | 
					
						
							|  |  |  | 	0,				/* tp_as_mapping */ | 
					
						
							|  |  |  | 	0,				/* tp_hash */ | 
					
						
							|  |  |  | 	(ternaryfunc)itemgetter_call,	/* tp_call */ | 
					
						
							|  |  |  | 	0,				/* tp_str */ | 
					
						
							|  |  |  | 	PyObject_GenericGetAttr,	/* tp_getattro */ | 
					
						
							|  |  |  | 	0,				/* tp_setattro */ | 
					
						
							|  |  |  | 	0,				/* tp_as_buffer */ | 
					
						
							|  |  |  | 	Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,	/* tp_flags */ | 
					
						
							|  |  |  | 	itemgetter_doc,			/* tp_doc */ | 
					
						
							|  |  |  | 	(traverseproc)itemgetter_traverse,	/* tp_traverse */ | 
					
						
							|  |  |  | 	0,				/* tp_clear */ | 
					
						
							|  |  |  | 	0,				/* tp_richcompare */ | 
					
						
							|  |  |  | 	0,				/* tp_weaklistoffset */ | 
					
						
							|  |  |  | 	0,				/* tp_iter */ | 
					
						
							|  |  |  | 	0,				/* tp_iternext */ | 
					
						
							|  |  |  | 	0,				/* tp_methods */ | 
					
						
							|  |  |  | 	0,				/* tp_members */ | 
					
						
							|  |  |  | 	0,				/* tp_getset */ | 
					
						
							|  |  |  | 	0,				/* tp_base */ | 
					
						
							|  |  |  | 	0,				/* tp_dict */ | 
					
						
							|  |  |  | 	0,				/* tp_descr_get */ | 
					
						
							|  |  |  | 	0,				/* tp_descr_set */ | 
					
						
							|  |  |  | 	0,				/* tp_dictoffset */ | 
					
						
							|  |  |  | 	0,				/* tp_init */ | 
					
						
							|  |  |  | 	0,				/* tp_alloc */ | 
					
						
							|  |  |  | 	itemgetter_new,			/* tp_new */ | 
					
						
							|  |  |  | 	0,				/* tp_free */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* attrgetter object **********************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							|  |  |  | 	PyObject_HEAD | 
					
						
							|  |  |  | 	PyObject *attr; | 
					
						
							|  |  |  | } attrgetterobject; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyTypeObject attrgetter_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | attrgetter_new(PyTypeObject *type, PyObject *args, PyObject *kwds) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	attrgetterobject *ag; | 
					
						
							|  |  |  | 	PyObject *attr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!PyArg_UnpackTuple(args, "attrgetter", 1, 1, &attr)) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* create attrgetterobject structure */ | 
					
						
							|  |  |  | 	ag = PyObject_GC_New(attrgetterobject, &attrgetter_type); | 
					
						
							|  |  |  | 	if (ag == NULL)  | 
					
						
							|  |  |  | 		return NULL;	 | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	Py_INCREF(attr); | 
					
						
							|  |  |  | 	ag->attr = attr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	PyObject_GC_Track(ag); | 
					
						
							|  |  |  | 	return (PyObject *)ag; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | attrgetter_dealloc(attrgetterobject *ag) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject_GC_UnTrack(ag); | 
					
						
							|  |  |  | 	Py_XDECREF(ag->attr); | 
					
						
							|  |  |  | 	PyObject_GC_Del(ag); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | attrgetter_traverse(attrgetterobject *ag, visitproc visit, void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (ag->attr) | 
					
						
							|  |  |  | 		return visit(ag->attr, arg); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | attrgetter_call(attrgetterobject *ag, PyObject *args, PyObject *kw) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject * obj; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!PyArg_UnpackTuple(args, "attrgetter", 1, 1, &obj)) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	return PyObject_GetAttr(obj, ag->attr); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(attrgetter_doc, | 
					
						
							|  |  |  | "attrgetter(attr) --> attrgetter object\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | Return a callable object that fetches the given attribute from its operand.\n\ | 
					
						
							|  |  |  | After, f=attrgetter('name'), the call f(b) returns b.name."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyTypeObject attrgetter_type = { | 
					
						
							|  |  |  | 	PyObject_HEAD_INIT(NULL) | 
					
						
							|  |  |  | 	0,				/* ob_size */ | 
					
						
							| 
									
										
										
										
											2003-12-04 22:17:49 +00:00
										 |  |  | 	"operator.attrgetter",		/* tp_name */ | 
					
						
							| 
									
										
										
										
											2003-12-01 13:18:39 +00:00
										 |  |  | 	sizeof(attrgetterobject),	/* tp_basicsize */ | 
					
						
							|  |  |  | 	0,				/* tp_itemsize */ | 
					
						
							|  |  |  | 	/* methods */ | 
					
						
							|  |  |  | 	(destructor)attrgetter_dealloc,	/* tp_dealloc */ | 
					
						
							|  |  |  | 	0,				/* tp_print */ | 
					
						
							|  |  |  | 	0,				/* tp_getattr */ | 
					
						
							|  |  |  | 	0,				/* tp_setattr */ | 
					
						
							|  |  |  | 	0,				/* tp_compare */ | 
					
						
							|  |  |  | 	0,				/* tp_repr */ | 
					
						
							|  |  |  | 	0,				/* tp_as_number */ | 
					
						
							|  |  |  | 	0,				/* tp_as_sequence */ | 
					
						
							|  |  |  | 	0,				/* tp_as_mapping */ | 
					
						
							|  |  |  | 	0,				/* tp_hash */ | 
					
						
							|  |  |  | 	(ternaryfunc)attrgetter_call,	/* tp_call */ | 
					
						
							|  |  |  | 	0,				/* tp_str */ | 
					
						
							|  |  |  | 	PyObject_GenericGetAttr,	/* tp_getattro */ | 
					
						
							|  |  |  | 	0,				/* tp_setattro */ | 
					
						
							|  |  |  | 	0,				/* tp_as_buffer */ | 
					
						
							|  |  |  | 	Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,	/* tp_flags */ | 
					
						
							|  |  |  | 	attrgetter_doc,			/* tp_doc */ | 
					
						
							|  |  |  | 	(traverseproc)attrgetter_traverse,	/* tp_traverse */ | 
					
						
							|  |  |  | 	0,				/* tp_clear */ | 
					
						
							|  |  |  | 	0,				/* tp_richcompare */ | 
					
						
							|  |  |  | 	0,				/* tp_weaklistoffset */ | 
					
						
							|  |  |  | 	0,				/* tp_iter */ | 
					
						
							|  |  |  | 	0,				/* tp_iternext */ | 
					
						
							|  |  |  | 	0,				/* tp_methods */ | 
					
						
							|  |  |  | 	0,				/* tp_members */ | 
					
						
							|  |  |  | 	0,				/* tp_getset */ | 
					
						
							|  |  |  | 	0,				/* tp_base */ | 
					
						
							|  |  |  | 	0,				/* tp_dict */ | 
					
						
							|  |  |  | 	0,				/* tp_descr_get */ | 
					
						
							|  |  |  | 	0,				/* tp_descr_set */ | 
					
						
							|  |  |  | 	0,				/* tp_dictoffset */ | 
					
						
							|  |  |  | 	0,				/* tp_init */ | 
					
						
							|  |  |  | 	0,				/* tp_alloc */ | 
					
						
							|  |  |  | 	attrgetter_new,			/* tp_new */ | 
					
						
							|  |  |  | 	0,				/* tp_free */ | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | /* Initialization function for the module (*must* be called initoperator) */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-02 02:27:13 +00:00
										 |  |  | PyMODINIT_FUNC | 
					
						
							| 
									
										
										
										
											2000-07-21 06:00:07 +00:00
										 |  |  | initoperator(void) | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2003-12-01 13:18:39 +00:00
										 |  |  | 	PyObject *m; | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  | 	/* Create the module and add the functions */ | 
					
						
							|  |  |  |         m = Py_InitModule4("operator", operator_methods, operator_doc, | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  | 		       (PyObject*)NULL, PYTHON_API_VERSION); | 
					
						
							| 
									
										
										
										
											2003-12-01 13:18:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (PyType_Ready(&itemgetter_type) < 0) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	Py_INCREF(&itemgetter_type); | 
					
						
							|  |  |  | 	PyModule_AddObject(m, "itemgetter", (PyObject *)&itemgetter_type); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (PyType_Ready(&attrgetter_type) < 0) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	Py_INCREF(&attrgetter_type); | 
					
						
							|  |  |  | 	PyModule_AddObject(m, "attrgetter", (PyObject *)&attrgetter_type); | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | } |