version 1.1 | | version 1.2 |
---|
| | |
{ "ObjectAt", (PyCFunction)Map_GetFirstObjectAt, METH_VARARGS}, | | { "ObjectAt", (PyCFunction)Map_GetFirstObjectAt, METH_VARARGS}, |
{ "CreateObject", (PyCFunction)Map_CreateObject, METH_VARARGS}, | | { "CreateObject", (PyCFunction)Map_CreateObject, METH_VARARGS}, |
{ "Check", (PyCFunction)Map_Check, METH_VARARGS}, | | { "Check", (PyCFunction)Map_Check, METH_VARARGS}, |
{NULL, NULL } | | {NULL, NULL, 0} |
}; | | }; |
| | |
static PyNumberMethods MapConvert[ ] = { | | static PyNumberMethods MapConvert[ ] = { |
0, /* binaryfunc nb_add; /* __add__ */ | | 0, /* binaryfunc nb_add; */ /* __add__ */ |
0, /* binaryfunc nb_subtract; /* __sub__ */ | | 0, /* binaryfunc nb_subtract; */ /* __sub__ */ |
0, /* binaryfunc nb_multiply; /* __mul__ */ | | 0, /* binaryfunc nb_multiply; */ /* __mul__ */ |
0, /* binaryfunc nb_divide; /* __div__ */ | | 0, /* binaryfunc nb_divide; */ /* __div__ */ |
0, /* binaryfunc nb_remainder; /* __mod__ */ | | 0, /* binaryfunc nb_remainder; */ /* __mod__ */ |
0, /* binaryfunc nb_divmod; /* __divmod__ */ | | 0, /* binaryfunc nb_divmod; */ /* __divmod__ */ |
0, /* ternaryfunc nb_power; /* __pow__ */ | | 0, /* ternaryfunc nb_power; */ /* __pow__ */ |
0, /* unaryfunc nb_negative; /* __neg__ */ | | 0, /* unaryfunc nb_negative; */ /* __neg__ */ |
0, /* unaryfunc nb_positive; /* __pos__ */ | | 0, /* unaryfunc nb_positive; */ /* __pos__ */ |
0, /* unaryfunc nb_absolute; /* __abs__ */ | | 0, /* unaryfunc nb_absolute; */ /* __abs__ */ |
0, /* inquiry nb_nonzero; /* __nonzero__ */ | | 0, /* inquiry nb_nonzero; */ /* __nonzero__ */ |
0, /* unaryfunc nb_invert; /* __invert__ */ | | 0, /* unaryfunc nb_invert; */ /* __invert__ */ |
0, /* binaryfunc nb_lshift; /* __lshift__ */ | | 0, /* binaryfunc nb_lshift; */ /* __lshift__ */ |
0, /* binaryfunc nb_rshift; /* __rshift__ */ | | 0, /* binaryfunc nb_rshift; */ /* __rshift__ */ |
0, /* binaryfunc nb_and; /* __and__ */ | | 0, /* binaryfunc nb_and; */ /* __and__ */ |
0, /* binaryfunc nb_xor; /* __xor__ */ | | 0, /* binaryfunc nb_xor; */ /* __xor__ */ |
0, /* binaryfunc nb_or; /* __or__ */ | | 0, /* binaryfunc nb_or; */ /* __or__ */ |
0, /* coercion nb_coerce; /* __coerce__ */ | | 0, /* coercion nb_coerce; */ /* __coerce__ */ |
Crossfire_Map_Int, /* unaryfunc nb_int; /* __int__ */ | | Crossfire_Map_Int, /* unaryfunc nb_int; */ /* __int__ */ |
Crossfire_Map_Long, /* unaryfunc nb_long; /* __long__ */ | | Crossfire_Map_Long, /* unaryfunc nb_long; */ /* __long__ */ |
0 | | 0 |
}; | | }; |
| | |