File: gst.c
Function: _wrap_gst_segment_set_last_stop
Error: returning (PyObject*)NULL without setting an exception
2721 static PyObject *
2722 _wrap_gst_segment_set_last_stop(PyObject *self, PyObject *args, PyObject *kwargs)
2723 {
2724     static char *kwlist[] = { "format", "position", NULL };
2725     PyObject *py_format = NULL;
2726     GstFormat format;
2727     gint64 position;
2728 
2729     if (!PyArg_ParseTupleAndKeywords(args, kwargs,"OL:GstSegment.set_last_stop", kwlist, &py_format, &position))
when PyArg_ParseTupleAndKeywords() succeeds
taking False path
2730         return NULL;
2731     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:2731
when considering range: -0x80000000 <= value <= -1
taking True path
2732         return NULL;
2733     pyg_begin_allow_threads;
2734     gst_segment_set_last_stop(pyg_boxed_get(self, GstSegment), format, position);
2735     pyg_end_allow_threads;
2736     Py_INCREF(Py_None);
2737     return Py_None;
2738 }
returning (PyObject*)NULL without setting an exception
found 1 similar trace(s) to this