File: pyalsa/alsacard.c
Function: initalsacard
Error: ob_refcnt of '*module' is 1 too low
230 PyMODINIT_FUNC
231 initalsacard(void)
232 {
233 	module = Py_InitModule3("alsacard", pyalsacardparse_methods, "libasound alsacard wrapper");
when Py_InitModule4_64() succeeds
borrowed reference returned by Py_InitModule4_64() allocated at: 	module = Py_InitModule3("alsacard", pyalsacardparse_methods, "libasound alsacard wrapper");
ob_refcnt is now refs: 0 + N where N >= 1
'*module' is now referenced by 1 non-stack value(s): module
234 	if (module == NULL)
taking False path
235 		return;
returning
ob_refcnt of '*module' is 1 too low
was expecting final ob_refcnt to be N + 1 (for some unknown N)
due to object being referenced by: module
but final ob_refcnt is N + 0
236 
237 	if (PyErr_Occurred())
PyErr_Occurred()
taking False path
238 		Py_FatalError("Cannot initialize module alsacard");
239 }