File: gst.c
Function: _wrap_GST_OBJECT_FLAG_SET
Error: returning (PyObject*)NULL without setting an exception
3648 static PyObject *
3649 _wrap_GST_OBJECT_FLAG_SET(PyGObject *self, PyObject *args, PyObject *kwargs)
3650 {
3651     static char *kwlist[] = { "flags", NULL };
3652     PyObject *py_flags = NULL;
3653     GstObjectFlags flags;
3654 
3655     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"O:GstObject.set_flag", kwlist, &py_flags))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
3656         return NULL;
3657     if (pyg_flags_get_value(GST_TYPE_OBJECT_FLAGS, py_flags, (gint *)&flags))
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:3657
when considering range: -0x80000000 <= value <= -1
taking True path
3658         return NULL;
3659     pyg_begin_allow_threads;
3660     GST_OBJECT_FLAG_SET(GST_OBJECT(self->obj), flags);
3661     pyg_end_allow_threads;
3662     Py_INCREF(Py_None);
3663     return Py_None;
3664 }
returning (PyObject*)NULL without setting an exception
found 1 similar trace(s) to this