File: canto/widecurse.c
Function: disable_color
Error: ob_refcnt of return value is 1 too low
301 static PyObject *disable_color(PyObject *self, PyObject *args)
302 {
303     ignore |= IGNORE_COLOR;
304     return Py_None;
ob_refcnt is now refs: 0 + N where N >= 1
305 }
returning
ob_refcnt of return value is 1 too low
was expecting final ob_refcnt to be N + 1 (for some unknown N)
due to object being referenced by: return value
but final ob_refcnt is N + 0
consider using "Py_RETURN_NONE;"
306