File: gst.c
Function: _wrap_gst_event_new_step
Error: returning (PyObject*)NULL without setting an exception
25142 static PyObject *
25143 _wrap_gst_event_new_step(PyObject *self, PyObject *args, PyObject *kwargs)
25144 {
25145     static char *kwlist[] = { "format", "amount", "rate", "flush", "intermediate", NULL };
25146     PyObject *py_format = NULL, *py_ret;
25147     double rate;
25148     GstEvent *ret;
25149     int flush, intermediate;
25150     GstFormat format;
25151     guint64 amount;
25152 
25153     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"OKdii:event_new_step", kwlist, &py_format, &amount, &rate, &flush, &intermediate))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
25154         return NULL;
25155     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:25155
when considering range: -0x80000000 <= value <= -1
taking True path
25156         return NULL;
25157     pyg_begin_allow_threads;
25158     ret = gst_event_new_step(format, amount, rate, flush, intermediate);
25159     pyg_end_allow_threads;
25160     py_ret = pygstminiobject_new((GstMiniObject *)ret);
25161     if (ret != NULL)
25162        gst_mini_object_unref((GstMiniObject *)ret);
25163     return py_ret;
25164 }
returning (PyObject*)NULL without setting an exception