File: goocanvas.c
Function: _wrap_goo_canvas_item_model_animate
Error: returning (PyObject*)NULL without setting an exception
8757 static PyObject *
8758 _wrap_goo_canvas_item_model_animate(PyGObject *self, PyObject *args, PyObject *kwargs)
8759 {
8760     static char *kwlist[] = { "x", "y", "scale", "degrees", "absolute", "duration", "step_time", "type", NULL };
8761     int absolute, duration, step_time;
8762     double x, y, scale, degrees;
8763     GooCanvasAnimateType type;
8764     PyObject *py_type = NULL;
8765 
8766     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"ddddiiiO:Goo.ItemModel.animate", kwlist, &x, &y, &scale, &degrees, &absolute, &duration, &step_time, &py_type))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
8767         return NULL;
8768     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:8768
when considering range: -0x80000000 <= value <= -1
taking True path
8769         return NULL;
8770     
8771     goo_canvas_item_model_animate(GOO_CANVAS_ITEM_MODEL(self->obj), x, y, scale, degrees, absolute, duration, step_time, type);
8772     
8773     Py_INCREF(Py_None);
8774     return Py_None;
8775 }
returning (PyObject*)NULL without setting an exception
found 1 similar trace(s) to this