File: gst.c
Function: _wrap_gst_segment_set_newsegment_full
Error: returning (PyObject*)NULL without setting an exception
2799 static PyObject *
2800 _wrap_gst_segment_set_newsegment_full(PyObject *self, PyObject *args, PyObject *kwargs)
2801 {
2802     static char *kwlist[] = { "update", "rate", "applied_rate", "format", "start", "stop", "time", NULL };
2803     int update;
2804     double rate, applied_rate;
2805     GstFormat format;
2806     gint64 start, stop, time;
2807     PyObject *py_format = NULL;
2808 
2809     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"iddOLLL:GstSegment.set_newsegment_full", kwlist, &update, &rate, &applied_rate, &py_format, &start, &stop, &time))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
2810         return NULL;
2811     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:2811
when considering range: -0x80000000 <= value <= -1
taking True path
2812         return NULL;
2813     pyg_begin_allow_threads;
2814     gst_segment_set_newsegment_full(pyg_boxed_get(self, GstSegment), update, rate, applied_rate, format, start, stop, time);
2815     pyg_end_allow_threads;
2816     Py_INCREF(Py_None);
2817     return Py_None;
2818 }
returning (PyObject*)NULL without setting an exception
found 1 similar trace(s) to this