File: gst.c
Function: _wrap_gst_tag_list_insert
Error: returning (PyObject*)NULL without setting an exception
2157 static PyObject *
2158 _wrap_gst_tag_list_insert(PyObject *self, PyObject *args, PyObject *kwargs)
2159 {
2160     static char *kwlist[] = { "from_", "mode", NULL };
2161     GstTagList *from = NULL;
2162     PyObject *py_from, *py_mode = NULL;
2163     GstTagMergeMode mode;
2164 
2165     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"OO:GstTagList.insert", kwlist, &py_from, &py_mode))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
2166         return NULL;
2167     if (pyg_boxed_check(py_from, GST_TYPE_TAG_LIST))
when treating unknown struct _PyGObject_Functions * from /usr/include/pygtk-2.0/pygobject.h:207 as non-NULL
when taking False path
when considering range: -0x80000000 <= value <= -1
taking True path
when taking True path
2168         from = pyg_boxed_get(py_from, GstTagList);
2169     else {
2170         PyErr_SetString(PyExc_TypeError, "from should be a GstTagList");
2171         return NULL;
2172     }
2173     if (pyg_enum_get_value(GST_TYPE_TAG_MERGE_MODE, py_mode, (gint *)&mode))
calling unknown gint (*) (GType, struct PyObject *, gint *) from gst.c:2173
when considering range: -0x80000000 <= value <= -1
taking True path
2174         return NULL;
2175     pyg_begin_allow_threads;
2176     gst_tag_list_insert(pyg_boxed_get(self, GstTagList), from, mode);
2177     pyg_end_allow_threads;
2178     Py_INCREF(Py_None);
2179     return Py_None;
2180 }
returning (PyObject*)NULL without setting an exception
found 2 similar trace(s) to this