File: gst.c
Function: _wrap_gst_bin_find_unlinked_pad
Error: returning (PyObject*)NULL without setting an exception
7199 static PyObject *
7200 _wrap_gst_bin_find_unlinked_pad(PyGObject *self, PyObject *args, PyObject *kwargs)
7201 {
7202     static char *kwlist[] = { "direction", NULL };
7203     PyObject *py_direction = NULL;
7204     GstPadDirection direction;
7205     GstPad *ret;
7206 
7207     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"O:GstBin.find_unlinked_pad", kwlist, &py_direction))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
7208         return NULL;
7209     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:7209
when considering range: -0x80000000 <= value <= -1
taking True path
7210         return NULL;
7211     pyg_begin_allow_threads;
7212     ret = gst_bin_find_unlinked_pad(GST_BIN(self->obj), direction);
7213     pyg_end_allow_threads;
7214     /* pygobject_new handles NULL checking */
7215     return pygobject_new((GObject *)ret);
7216 }
returning (PyObject*)NULL without setting an exception
found 1 similar trace(s) to this