File: gst.c
Function: _wrap_gst_controller_set_interpolation_mode
Error: returning (PyObject*)NULL without setting an exception
14109 static PyObject *
14110 _wrap_gst_controller_set_interpolation_mode(PyGObject *self, PyObject *args, PyObject *kwargs)
14111 {
14112     static char *kwlist[] = { "property_name", "mode", NULL };
14113     char *property_name;
14114     GstInterpolateMode mode;
14115     int ret;
14116     PyObject *py_mode = NULL;
14117 
14118     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"sO:GstController.set_interpolation_mode", kwlist, &property_name, &py_mode))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
14119         return NULL;
14120     if (pyg_enum_get_value(G_TYPE_NONE, py_mode, (gint *)&mode))
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 gst.c:14120
when considering range: -0x80000000 <= value <= -1
taking True path
14121         return NULL;
14122     pyg_begin_allow_threads;
14123     ret = gst_controller_set_interpolation_mode(GST_CONTROLLER(self->obj), property_name, mode);
14124     pyg_end_allow_threads;
14125     return PyBool_FromLong(ret);
14126 
14127 }
returning (PyObject*)NULL without setting an exception
found 1 similar trace(s) to this