File: gst.c
Function: _wrap_gst_parse_bin_from_description
Error: returning (PyObject*)NULL without setting an exception
26175 static PyObject *
26176 _wrap_gst_parse_bin_from_description(PyObject *self, PyObject *args, PyObject *kwargs)
26177 {
26178     static char *kwlist[] = { "bin_description", "ghost_unconnected_pads", NULL };
26179     char *bin_description;
26180     int ghost_unconnected_pads;
26181     GstElement *ret;
26182     GError *err = NULL;
26183 
26184     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"si:parse_bin_from_description", kwlist, &bin_description, &ghost_unconnected_pads))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
26185         return NULL;
26186     pyg_begin_allow_threads;
when treating unknown struct _PyGObject_Functions * from /usr/include/pygtk-2.0/pygobject.h:207 as non-NULL
when considering range: 1 <= value <= 0x7fffffff
taking True path
releasing the GIL by calling PyEval_SaveThread()
26187     ret = gst_parse_bin_from_description(bin_description, ghost_unconnected_pads, &err);
26188     pyg_end_allow_threads;
when considering range: 1 <= value <= 0x7fffffff
taking True path
reacquiring the GIL by calling PyEval_RestoreThread()
26189     if (pyg_error_check(&err))
calling unknown gboolean (*) (struct GError * *) from gst.c:26189
when considering range: -0x80000000 <= value <= -1
taking True path
26190         return NULL;
26191     /* pygobject_new handles NULL checking */
26192     return pygobject_new((GObject *)ret);
26193 }
returning (PyObject*)NULL without setting an exception
found 16 similar trace(s) to this