File: gst.c
Function: _wrap_gst_debug_set_threshold_for_name
Error: returning (PyObject*)NULL without setting an exception
25410 static PyObject *
25411 _wrap_gst_debug_set_threshold_for_name(PyObject *self, PyObject *args, PyObject *kwargs)
25412 {
25413     static char *kwlist[] = { "name", "level", NULL };
25414     char *name;
25415     PyObject *py_level = NULL;
25416     GstDebugLevel level;
25417 
25418     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"sO:debug_set_threshold_for_name", kwlist, &name, &py_level))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
25419         return NULL;
25420     if (pyg_enum_get_value(GST_TYPE_DEBUG_LEVEL, py_level, (gint *)&level))
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:25420
when considering range: -0x80000000 <= value <= -1
taking True path
25421         return NULL;
25422     pyg_begin_allow_threads;
25423     gst_debug_set_threshold_for_name(name, level);
25424     pyg_end_allow_threads;
25425     Py_INCREF(Py_None);
25426     return Py_None;
25427 }
returning (PyObject*)NULL without setting an exception
found 1 similar trace(s) to this