File: rrdtoolmodule.c
Function: PyRRD_update
Error: returning (PyObject*)NULL without setting an exception
164 static PyObject *PyRRD_update(
165     PyObject UNUSED(*self),
166     PyObject * args)
167 {
168     PyObject *r;
169     char    **argv;
170     int       argc;
171 
172     if (create_args("update", args, &argc, &argv) < 0)
173         return NULL;
when considering range: -0x80000000 <= value <= -1
taking True path
174 
175     if (rrd_update(argc, argv) == -1) {
176         PyErr_SetString(ErrorObject, rrd_get_error());
177         rrd_clear_error();
178         r = NULL;
179     } else {
180         Py_INCREF(Py_None);
181         r = Py_None;
182     }
183 
184     destroy_args(&argv);
185     return r;
186 }
187 
returning (PyObject*)NULL without setting an exception