File: gst.c
Function: _wrap_gst_uri_protocol_is_supported
Error: returning (PyObject*)NULL without setting an exception
27132 static PyObject *
27133 _wrap_gst_uri_protocol_is_supported(PyObject *self, PyObject *args, PyObject *kwargs)
27134 {
27135     static char *kwlist[] = { "type", "protocol", NULL };
27136     PyObject *py_type = NULL;
27137     char *protocol;
27138     int ret;
27139     GstURIType type;
27140 
27141     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"Os:uri_protocol_is_supported", kwlist, &py_type, &protocol))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
27142         return NULL;
27143     if (pyg_enum_get_value(GST_TYPE_URI_TYPE, py_type, (gint *)&type))
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:27143
when considering range: -0x80000000 <= value <= -1
taking True path
27144         return NULL;
27145     pyg_begin_allow_threads;
27146     ret = gst_uri_protocol_is_supported(type, protocol);
27147     pyg_end_allow_threads;
27148     return PyBool_FromLong(ret);
27149 
27150 }
returning (PyObject*)NULL without setting an exception
found 1 similar trace(s) to this