File: gst.c
Function: _wrap_gst_index_set_certainty
Error: returning (PyObject*)NULL without setting an exception
4224 static PyObject *
4225 _wrap_gst_index_set_certainty(PyGObject *self, PyObject *args, PyObject *kwargs)
4226 {
4227     static char *kwlist[] = { "certainty", NULL };
4228     PyObject *py_certainty = NULL;
4229     GstIndexCertainty certainty;
4230 
4231     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"O:GstIndex.set_certainty", kwlist, &py_certainty))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
4232         return NULL;
4233     if (pyg_enum_get_value(GST_TYPE_INDEX_CERTAINTY, py_certainty, (gint *)&certainty))
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:4233
when considering range: -0x80000000 <= value <= -1
taking True path
4234         return NULL;
4235     pyg_begin_allow_threads;
4236     gst_index_set_certainty(GST_INDEX(self->obj), certainty);
4237     pyg_end_allow_threads;
4238     Py_INCREF(Py_None);
4239     return Py_None;
4240 }
returning (PyObject*)NULL without setting an exception
found 1 similar trace(s) to this