File: gst.c
Function: _wrap_gst_bus_pop_filtered
Error: returning (PyObject*)NULL without setting an exception
8345 static PyObject *
8346 _wrap_gst_bus_pop_filtered(PyGObject *self, PyObject *args, PyObject *kwargs)
8347 {
8348     static char *kwlist[] = { "types", NULL };
8349     PyObject *py_types = NULL, *py_ret;
8350     GstMessage *ret;
8351     GstMessageType types;
8352 
8353     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"O:GstBus.pop_filtered", kwlist, &py_types))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
8354         return NULL;
8355     if (pyg_flags_get_value(GST_TYPE_MESSAGE_TYPE, py_types, (gint *)&types))
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:8355
when considering range: -0x80000000 <= value <= -1
taking True path
8356         return NULL;
8357     pyg_begin_allow_threads;
8358     ret = gst_bus_pop_filtered(GST_BUS(self->obj), types);
8359     pyg_end_allow_threads;
8360     py_ret = pygstminiobject_new((GstMiniObject *)ret);
8361     if (ret != NULL)
8362        gst_mini_object_unref((GstMiniObject *)ret);
8363     return py_ret;
8364 }
returning (PyObject*)NULL without setting an exception