File: gst.c
Function: _wrap_gst_plugin_load_file
Error: returning (PyObject*)NULL without setting an exception
26258 static PyObject *
26259 _wrap_gst_plugin_load_file(PyObject *self, PyObject *args, PyObject *kwargs)
26260 {
26261     static char *kwlist[] = { "filename", NULL };
26262     char *filename;
26263     GError *error = NULL;
26264     GstPlugin *ret;
26265 
26266     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"s:plugin_load_file", kwlist, &filename))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
26267         return NULL;
26268     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: -0x80000000 <= value <= -1
taking True path
releasing the GIL by calling PyEval_SaveThread()
26269     ret = gst_plugin_load_file(filename, &error);
26270     pyg_end_allow_threads;
when considering range: -0x80000000 <= value <= -1
taking True path
reacquiring the GIL by calling PyEval_RestoreThread()
26271     if (pyg_error_check(&error))
calling unknown gboolean (*) (struct GError * *) from gst.c:26271
when considering range: -0x80000000 <= value <= -1
taking True path
26272         return NULL;
26273     /* pygobject_new handles NULL checking */
26274     return pygobject_new((GObject *)ret);
26275 }
returning (PyObject*)NULL without setting an exception
found 17 similar trace(s) to this