Difference for plugins/cfpython/include/cfpython_object_private.h from version 1.1 to 1.2


version 1.1 version 1.2
Line 358
 
Line 358
     { "CreateObject",   (PyCFunction)Crossfire_Object_CreateInside, METH_VARARGS},      { "CreateObject",   (PyCFunction)Crossfire_Object_CreateInside, METH_VARARGS},
     { "ReadKey",        (PyCFunction)Crossfire_Object_ReadKey,      METH_VARARGS},      { "ReadKey",        (PyCFunction)Crossfire_Object_ReadKey,      METH_VARARGS},
     { "WriteKey",       (PyCFunction)Crossfire_Object_WriteKey,     METH_VARARGS},      { "WriteKey",       (PyCFunction)Crossfire_Object_WriteKey,     METH_VARARGS},
     {NULL, NULL }      {NULL, NULL, 0}
 };  };
   
 static PyNumberMethods ObjectConvert[ ] = {  static PyNumberMethods ObjectConvert[ ] = {
         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_Object_Int,               /* unaryfunc nb_int;          /* __int__ */          Crossfire_Object_Int, /* unaryfunc nb_int; */    /* __int__ */
         Crossfire_Object_Long,              /* unaryfunc nb_long;         /* __long__ */          Crossfire_Object_Long, /* unaryfunc nb_long; */  /* __long__ */
         0          0
 };  };
   


Legend:
line(s) removed in v.1.1 
line(s) changed
 line(s) added in v.1.2

File made using version 1.98 of cvs2html by leaf at 2011-07-21 17:01