File: gst.c
Function: _wrap_gst_bus_timed_pop_filtered
Error: returning (PyObject*)NULL without setting an exception
8385 static PyObject *
8386 _wrap_gst_bus_timed_pop_filtered(PyGObject *self, PyObject *args, PyObject *kwargs)
8387 {
8388     static char *kwlist[] = { "timeout", "types", NULL };
8389     PyObject *py_types = NULL, *py_ret;
8390     GstMessage *ret;
8391     GstMessageType types;
8392     guint64 timeout;
8393 
8394     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"KO:GstBus.timed_pop_filtered", kwlist, &timeout, &py_types))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
8395         return NULL;
8396     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:8396
when considering range: -0x80000000 <= value <= -1
taking True path
8397         return NULL;
8398     pyg_begin_allow_threads;
8399     ret = gst_bus_timed_pop_filtered(GST_BUS(self->obj), timeout, types);
8400     pyg_end_allow_threads;
8401     py_ret = pygstminiobject_new((GstMiniObject *)ret);
8402     if (ret != NULL)
8403        gst_mini_object_unref((GstMiniObject *)ret);
8404     return py_ret;
8405 }
returning (PyObject*)NULL without setting an exception