File: gst.c
Function: _wrap_gst_segment_set_running_time
Error: returning (PyObject*)NULL without setting an exception
2908 static PyObject *
2909 _wrap_gst_segment_set_running_time(PyObject *self, PyObject *args, PyObject *kwargs)
2910 {
2911     static char *kwlist[] = { "format", "running_time", NULL };
2912     PyObject *py_format = NULL;
2913     int ret;
2914     GstFormat format;
2915     gint64 running_time;
2916 
2917     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"OL:GstSegment.set_running_time", kwlist, &py_format, &running_time))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
2918         return NULL;
2919     if (pyg_enum_get_value(GST_TYPE_FORMAT, py_format, (gint *)&format))
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:2919
when considering range: -0x80000000 <= value <= -1
taking True path
2920         return NULL;
2921     pyg_begin_allow_threads;
2922     ret = gst_segment_set_running_time(pyg_boxed_get(self, GstSegment), format, running_time);
2923     pyg_end_allow_threads;
2924     return PyBool_FromLong(ret);
2925 
2926 }
returning (PyObject*)NULL without setting an exception
found 1 similar trace(s) to this