File: canto/widecurse.c
Function: enable_style
Error: ob_refcnt of return value is 1 too low
319 static PyObject *enable_style(PyObject *self, PyObject *args)
320 {
321     ignore &= ~IGNORE_COLOR;
322     return Py_None;
ob_refcnt is now refs: 0 + N where N >= 1
323 }
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;"
324