File: gst.c
Function: _wrap_gst_registry_find_feature
Error: returning (PyObject*)NULL without setting an exception
12483 static PyObject *
12484 _wrap_gst_registry_find_feature(PyGObject *self, PyObject *args, PyObject *kwargs)
12485 {
12486     static char *kwlist[] = { "name", "type", NULL };
12487     char *name;
12488     PyObject *py_type = NULL, *py_ret;
12489     GType type;
12490     GstPluginFeature *ret;
12491 
12492     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"sO:GstRegistry.find_feature", kwlist, &name, &py_type))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
12493         return NULL;
12494     if ((type = pyg_type_from_object(py_type)) == 0)
when treating unknown struct _PyGObject_Functions * from /usr/include/pygtk-2.0/pygobject.h:207 as non-NULL
calling unknown GType (*) (struct PyObject *) from gst.c:12494
when considering value == (GType)0 from gst.c:12494
taking True path
12495         return NULL;
12496     pyg_begin_allow_threads;
12497     ret = gst_registry_find_feature(GST_REGISTRY(self->obj), name, type);
12498     pyg_end_allow_threads;
12499     py_ret = pygobject_new((GObject *)ret);
12500     if (ret != NULL)
12501         g_object_unref((GObject *)ret);
12502     return py_ret;
12503 }
returning (PyObject*)NULL without setting an exception