File: gst.c
Function: _wrap_gst_alloc_trace_set_flags_all
Error: returning (PyObject*)NULL without setting an exception
26771 static PyObject *
26772 _wrap_gst_alloc_trace_set_flags_all(PyObject *self, PyObject *args, PyObject *kwargs)
26773 {
26774     static char *kwlist[] = { "flags", NULL };
26775     PyObject *py_flags = NULL;
26776     GstAllocTraceFlags flags;
26777 
26778     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"O:alloc_trace_set_flags_all", kwlist, &py_flags))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
26779         return NULL;
26780     if (pyg_flags_get_value(GST_TYPE_ALLOC_TRACE_FLAGS, py_flags, (gint *)&flags))
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:26780
when considering range: -0x80000000 <= value <= -1
taking True path
26781         return NULL;
26782     pyg_begin_allow_threads;
26783     gst_alloc_trace_set_flags_all(flags);
26784     pyg_end_allow_threads;
26785     Py_INCREF(Py_None);
26786     return Py_None;
26787 }
returning (PyObject*)NULL without setting an exception
found 1 similar trace(s) to this