File: canto/widecurse.c
Function: disable_style
Error: ob_refcnt of return value is 1 too low
313 static PyObject *disable_style(PyObject *self, PyObject *args)
314 {
315     ignore |= IGNORE_STYLE;
316     return Py_None;
ob_refcnt is now refs: 0 + N where N >= 1
317 }
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;"
318