File: goocanvas.c
Function: _wrap_goo_canvas_item_animate
Error: returning (PyObject*)NULL without setting an exception
4332 static PyObject *
4333 _wrap_goo_canvas_item_animate(PyGObject *self, PyObject *args, PyObject *kwargs)
4334 {
4335     static char *kwlist[] = { "x", "y", "scale", "degrees", "absolute", "duration", "step_time", "type", NULL };
4336     int absolute, duration, step_time;
4337     double x, y, scale, degrees;
4338     GooCanvasAnimateType type;
4339     PyObject *py_type = NULL;
4340 
4341     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"ddddiiiO:Goo.Item.animate", kwlist, &x, &y, &scale, &degrees, &absolute, &duration, &step_time, &py_type))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
4342         return NULL;
4343     if (pyg_enum_get_value(GOO_TYPE_CANVAS_ANIMATE_TYPE, py_type, (gpointer)&type))
when treating unknown struct _PyGObject_Functions * from /usr/include/pygtk-2.0/pygobject.h:207 as non-NULL
calling unknown gint (*) (GType, struct PyObject *, gint *) from goocanvas.c:4343
when considering range: -0x80000000 <= value <= -1
taking True path
4344         return NULL;
4345     
4346     goo_canvas_item_animate(GOO_CANVAS_ITEM(self->obj), x, y, scale, degrees, absolute, duration, step_time, type);
4347     
4348     Py_INCREF(Py_None);
4349     return Py_None;
4350 }
returning (PyObject*)NULL without setting an exception
found 1 similar trace(s) to this