File: gst.c
Function: _wrap_gst_bin_find_unconnected_pad
Error: returning (PyObject*)NULL without setting an exception
7218 static PyObject *
7219 _wrap_gst_bin_find_unconnected_pad(PyGObject *self, PyObject *args, PyObject *kwargs)
7220 {
7221     static char *kwlist[] = { "direction", NULL };
7222     PyObject *py_direction = NULL;
7223     GstPadDirection direction;
7224     GstPad *ret;
7225 
7226     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"O:GstBin.find_unconnected_pad", kwlist, &py_direction))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
7227         return NULL;
7228     if (pyg_enum_get_value(GST_TYPE_PAD_DIRECTION, py_direction, (gint *)&direction))
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:7228
when considering range: -0x80000000 <= value <= -1
taking True path
7229         return NULL;
7230     pyg_begin_allow_threads;
7231     ret = gst_bin_find_unconnected_pad(GST_BIN(self->obj), direction);
7232     pyg_end_allow_threads;
7233     /* pygobject_new handles NULL checking */
7234     return pygobject_new((GObject *)ret);
7235 }
returning (PyObject*)NULL without setting an exception
found 1 similar trace(s) to this