File: gst.c
Function: _wrap_gst_parse_launch
Error: returning (PyObject*)NULL without setting an exception
26236 static PyObject *
26237 _wrap_gst_parse_launch(PyObject *self, PyObject *args, PyObject *kwargs)
26238 {
26239     static char *kwlist[] = { "pipeline_description", NULL };
26240     char *pipeline_description;
26241     PyObject *py_ret;
26242     GstElement *ret;
26243     GError *error = NULL;
26244 
26245     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"s:parse_launch", kwlist, &pipeline_description))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
26246         return NULL;
26247     pyg_begin_allow_threads;
when treating unknown struct _PyGObject_Functions * from /usr/include/pygtk-2.0/pygobject.h:207 as non-NULL
when considering value == (gboolean)0 from gst.c:26247
taking False path
26248     ret = gst_parse_launch(pipeline_description, &error);
26249     pyg_end_allow_threads;
when considering range: 1 <= value <= 0x7fffffff
taking True path
reacquiring the GIL by calling PyEval_RestoreThread()
26250     if (pyg_error_check(&error))
calling unknown gboolean (*) (struct GError * *) from gst.c:26250
when considering range: -0x80000000 <= value <= -1
taking True path
26251         return NULL;
26252     py_ret = pygobject_new((GObject *)ret);
26253     if (ret != NULL)
26254         g_object_unref((GObject *)ret);
26255     return py_ret;
26256 }
returning (PyObject*)NULL without setting an exception
found 10 similar trace(s) to this