File: gst.c
Function: _wrap_GST_OBJECT_FLAG_UNSET
Error: returning (PyObject*)NULL without setting an exception
3666 static PyObject *
3667 _wrap_GST_OBJECT_FLAG_UNSET(PyGObject *self, PyObject *args, PyObject *kwargs)
3668 {
3669     static char *kwlist[] = { "flag", NULL };
3670     PyObject *py_flag = NULL;
3671     GstObjectFlags flag;
3672 
3673     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"O:GstObject.unset_flag", kwlist, &py_flag))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
3674         return NULL;
3675     if (pyg_flags_get_value(GST_TYPE_OBJECT_FLAGS, py_flag, (gint *)&flag))
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:3675
when considering range: -0x80000000 <= value <= -1
taking True path
3676         return NULL;
3677     pyg_begin_allow_threads;
3678     GST_OBJECT_FLAG_UNSET(GST_OBJECT(self->obj), flag);
3679     pyg_end_allow_threads;
3680     Py_INCREF(Py_None);
3681     return Py_None;
3682 }
returning (PyObject*)NULL without setting an exception
found 1 similar trace(s) to this