| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | static char operator_doc[] = "\
 | 
					
						
							|  |  |  | Operator interface.\n\ | 
					
						
							|  |  |  | \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\ | 
					
						
							|  |  |  | '__' are also provided for convenience.\n\ | 
					
						
							|  |  |  | "; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |      Copyright  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |        Copyright 1996 Digital Creations, L.C., 910 Princess Anne | 
					
						
							|  |  |  |        Street, Suite 300, Fredericksburg, Virginia 22401 U.S.A. All | 
					
						
							|  |  |  |        rights reserved.  Copyright in this software is owned by DCLC, | 
					
						
							|  |  |  |        unless otherwise indicated. Permission to use, copy and | 
					
						
							|  |  |  |        distribute this software is hereby granted, provided that the | 
					
						
							|  |  |  |        above copyright notice appear in all copies and that both that | 
					
						
							|  |  |  |        copyright notice and this permission notice appear. Note that | 
					
						
							|  |  |  |        any product, process or technology described in this software | 
					
						
							|  |  |  |        may be the subject of other Intellectual Property rights | 
					
						
							|  |  |  |        reserved by Digital Creations, L.C. and are not licensed | 
					
						
							|  |  |  |        hereunder. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |      Trademarks  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |        Digital Creations & DCLC, are trademarks of Digital Creations, L.C.. | 
					
						
							|  |  |  |        All other trademarks are owned by their respective companies.  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |      No Warranty  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |        The software is provided "as is" without warranty of any kind, | 
					
						
							|  |  |  |        either express or implied, including, but not limited to, the | 
					
						
							|  |  |  |        implied warranties of merchantability, fitness for a particular | 
					
						
							|  |  |  |        purpose, or non-infringement. This software could include | 
					
						
							|  |  |  |        technical inaccuracies or typographical errors. Changes are | 
					
						
							|  |  |  |        periodically made to the software; these changes will be | 
					
						
							|  |  |  |        incorporated in new editions of the software. DCLC may make | 
					
						
							|  |  |  |        improvements and/or changes in this software at any time | 
					
						
							|  |  |  |        without notice. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |      Limitation Of Liability  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |        In no event will DCLC be liable for direct, indirect, special, | 
					
						
							|  |  |  |        incidental, economic, cover, or consequential damages arising | 
					
						
							|  |  |  |        out of the use of or inability to use this software even if | 
					
						
							|  |  |  |        advised of the possibility of such damages. Some states do not | 
					
						
							|  |  |  |        allow the exclusion or limitation of implied warranties or | 
					
						
							|  |  |  |        limitation of liability for incidental or consequential | 
					
						
							|  |  |  |        damages, so the above limitation or exclusion may not apply to | 
					
						
							|  |  |  |        you. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     If you have questions regarding this software, | 
					
						
							|  |  |  |     contact: | 
					
						
							|  |  |  |     | 
					
						
							|  |  |  |       Jim Fulton, jim@digicool.com | 
					
						
							|  |  |  |       Digital Creations L.C.   | 
					
						
							|  |  |  |     | 
					
						
							|  |  |  |       (540) 371-6909 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Modifications | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |       Renamed and slightly rearranged by Guido van Rossum | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "Python.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define spam1(OP,AOP) static PyObject *OP(s,a) PyObject *s, *a; { \
 | 
					
						
							|  |  |  |   PyObject *a1; \ | 
					
						
							|  |  |  |   if(! PyArg_ParseTuple(a,"O",&a1)) return NULL; \ | 
					
						
							|  |  |  |   return AOP(a1); } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define spam2(OP,AOP) static PyObject *OP(s,a) PyObject *s, *a; { \
 | 
					
						
							|  |  |  |   PyObject *a1, *a2; \ | 
					
						
							|  |  |  |   if(! PyArg_ParseTuple(a,"OO",&a1,&a2)) return NULL; \ | 
					
						
							|  |  |  |   return AOP(a1,a2); } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define spamoi(OP,AOP) static PyObject *OP(s,a) PyObject *s, *a; { \
 | 
					
						
							|  |  |  |   PyObject *a1; int a2; \ | 
					
						
							|  |  |  |   if(! PyArg_ParseTuple(a,"Oi",&a1,&a2)) return NULL; \ | 
					
						
							|  |  |  |   return AOP(a1,a2); } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define spam2n(OP,AOP) static PyObject *OP(s,a) PyObject *s, *a; { \
 | 
					
						
							|  |  |  |   PyObject *a1, *a2; \ | 
					
						
							|  |  |  |   if(! PyArg_ParseTuple(a,"OO",&a1,&a2)) return NULL; \ | 
					
						
							|  |  |  |   if(-1 == AOP(a1,a2)) return NULL; \ | 
					
						
							|  |  |  |   Py_INCREF(Py_None); \ | 
					
						
							|  |  |  |   return Py_None; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define spam3n(OP,AOP) static PyObject *OP(s,a) PyObject *s, *a; { \
 | 
					
						
							|  |  |  |   PyObject *a1, *a2, *a3; \ | 
					
						
							|  |  |  |   if(! PyArg_ParseTuple(a,"OOO",&a1,&a2,&a3)) return NULL; \ | 
					
						
							|  |  |  |   if(-1 == AOP(a1,a2,a3)) return NULL; \ | 
					
						
							|  |  |  |   Py_INCREF(Py_None); \ | 
					
						
							|  |  |  |   return Py_None; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define spami(OP,AOP) static PyObject *OP(s,a) PyObject *s, *a; { \
 | 
					
						
							|  |  |  |   PyObject *a1; long r; \ | 
					
						
							|  |  |  |   if(! PyArg_ParseTuple(a,"O",&a1)) return NULL; \ | 
					
						
							|  |  |  |   if(-1 == (r=AOP(a1))) return NULL; \ | 
					
						
							|  |  |  |   return PyInt_FromLong(r); } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define spami2(OP,AOP) static PyObject *OP(s,a) PyObject *s, *a; { \
 | 
					
						
							|  |  |  |   PyObject *a1, *a2; long r; \ | 
					
						
							|  |  |  |   if(! PyArg_ParseTuple(a,"OO",&a1,&a2)) return NULL; \ | 
					
						
							|  |  |  |   if(-1 == (r=AOP(a1,a2))) return NULL; \ | 
					
						
							|  |  |  |   return PyInt_FromLong(r); } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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) | 
					
						
							|  |  |  | 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) | 
					
						
							|  |  |  | 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) | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  | spami2(op_contains     , 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) | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											1996-08-21 17:40:51 +00:00
										 |  |  | op_getslice(s,a) | 
					
						
							| 
									
										
										
										
											1996-12-18 19:50:00 +00:00
										 |  |  |         PyObject *s, *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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-18 19:50:00 +00:00
										 |  |  |         if (!PyArg_ParseTuple(a,"Oii",&a1,&a2,&a3)) | 
					
						
							|  |  |  |                 return NULL; | 
					
						
							|  |  |  |         return PySequence_GetSlice(a1,a2,a3); | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											1996-08-21 17:40:51 +00:00
										 |  |  | op_setslice(s,a) | 
					
						
							| 
									
										
										
										
											1996-12-18 19:50:00 +00:00
										 |  |  |         PyObject *s, *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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-18 19:50:00 +00:00
										 |  |  |         if (!PyArg_ParseTuple(a,"OiiO",&a1,&a2,&a3,&a4)) | 
					
						
							|  |  |  |                 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* | 
					
						
							|  |  |  | op_delslice(s,a) | 
					
						
							| 
									
										
										
										
											1996-12-18 19:50:00 +00:00
										 |  |  |         PyObject *s, *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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-18 19:50:00 +00:00
										 |  |  |         if(! PyArg_ParseTuple(a,"Oii",&a1,&a2,&a3)) | 
					
						
							|  |  |  |                 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
 | 
					
						
							| 
									
										
										
										
											1996-08-19 22:01:39 +00:00
										 |  |  | #ifdef HAVE_OLD_CPP
 | 
					
						
							|  |  |  | #define spam1(OP,DOC) {"OP", OP, 1, DOC},
 | 
					
						
							| 
									
										
										
										
											1996-08-21 17:40:51 +00:00
										 |  |  | #define spam2(OP,ALTOP,DOC) {"OP", op_/**/OP, 1, DOC}, \
 | 
					
						
							|  |  |  | 			   {"ALTOP", op_/**/OP, 1, DOC},  | 
					
						
							| 
									
										
										
										
											1996-08-19 22:01:39 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  | #define spam1(OP,DOC) {#OP, OP, 1, DOC},
 | 
					
						
							| 
									
										
										
										
											1996-08-21 17:40:51 +00:00
										 |  |  | #define spam2(OP,ALTOP,DOC) {#OP, op_##OP, 1, DOC}, \
 | 
					
						
							|  |  |  | 			   {#ALTOP, op_##OP, 1, DOC},  | 
					
						
							| 
									
										
										
										
											1996-08-19 22:01:39 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static struct PyMethodDef operator_methods[] = { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-19 22:01:39 +00:00
										 |  |  | spam1(isCallable, | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  |  "isCallable(a) -- Same as callable(a).") | 
					
						
							| 
									
										
										
										
											1996-08-19 22:01:39 +00:00
										 |  |  | spam1(isNumberType, | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  |  "isNumberType(a) -- Return 1 if a has a numeric type, and zero otherwise.") | 
					
						
							| 
									
										
										
										
											1996-08-19 22:01:39 +00:00
										 |  |  | spam1(isSequenceType, | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  |  "isSequenceType(a) -- Return 1 if a has a sequence type, and zero otherwise.") | 
					
						
							| 
									
										
										
										
											1996-08-19 22:01:39 +00:00
										 |  |  | spam1(truth, | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  |  "truth(a) -- Return 1 if a is true, and 0 otherwise.") | 
					
						
							|  |  |  | spam2(contains,sequenceIncludes, | 
					
						
							|  |  |  |  "contains(a, b) -- Same as b in a (note reversed operands).") | 
					
						
							| 
									
										
										
										
											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.") | 
					
						
							|  |  |  | spam1(isMappingType, | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  |  "isMappingType(a) -- Return 1 if a has a mapping type, and zero otherwise.") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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.") | 
					
						
							|  |  |  | spam2(div,__div__, "div(a, b) -- Same as a / b.") | 
					
						
							|  |  |  | spam2(mod,__mod__, "mod(a, b) -- Same as a % b.") | 
					
						
							|  |  |  | spam2(neg,__neg__, "neg(a) -- Same as -a.") | 
					
						
							|  |  |  | spam2(pos,__pos__, "pos(a) -- Same as +a.") | 
					
						
							|  |  |  | spam2(abs,__abs__, "abs(a) -- Same as abs(a).") | 
					
						
							|  |  |  | spam2(inv,__inv__, "inv(a) -- Same as ~a.") | 
					
						
							|  |  |  | spam2(lshift,__lshift__, "lshift(a, b) -- Same as a << b.") | 
					
						
							|  |  |  | spam2(rshift,__rshift__, "rshift(a, b) -- Same as a >> b.") | 
					
						
							|  |  |  | spam2(not_,__not__, "not_(a) -- Same as not a.") | 
					
						
							|  |  |  | 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].") | 
					
						
							| 
									
										
										
										
											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].") | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Initialization function for the module (*must* be called initoperator) */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-04 18:50:17 +00:00
										 |  |  | DL_EXPORT(void) | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | initoperator() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1996-12-18 19:50:00 +00:00
										 |  |  |         /* Create the module and add the functions */ | 
					
						
							| 
									
										
										
										
											1998-05-22 18:12:59 +00:00
										 |  |  |         Py_InitModule4("operator", operator_methods, operator_doc, | 
					
						
							|  |  |  | 		       (PyObject*)NULL, PYTHON_API_VERSION); | 
					
						
							| 
									
										
										
										
											1996-07-30 16:55:54 +00:00
										 |  |  | } |