File: sqlitecache.c
Function: init_sqlitecache
Error: ob_refcnt of PyIntObject is 1 too high
624 PyMODINIT_FUNC
625 init_sqlitecache (void)
626 {
627     PyObject * m, * d;
628 
629     m = Py_InitModule ("_sqlitecache", SqliteMethods);
when Py_InitModule4_64() succeeds
630 
631     d = PyModule_GetDict(m);
632     PyDict_SetItemString(d, "DBVERSION", PyInt_FromLong(YUM_SQLITE_CACHE_DBVERSION));
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
PyIntObject allocated at:     PyDict_SetItemString(d, "DBVERSION", PyInt_FromLong(YUM_SQLITE_CACHE_DBVERSION));
ob_refcnt is now refs: 1 + N where N >= 0
ob_refcnt is now refs: 1 + N where N >= 1
633 }
returning
ob_refcnt of PyIntObject is 1 too high
was expecting final ob_refcnt to be N + 0 (for some unknown N)
but final ob_refcnt is N + 1
found 3 similar trace(s) to this