File: ../pytdb.c
Function: PyErr_SetTDBError
Error: ob_refcnt of new ref from call to Py_BuildValue is 1 too high
45 static void PyErr_SetTDBError(TDB_CONTEXT *tdb)
46 {
47 	PyErr_SetObject(PyExc_RuntimeError, 
48 		Py_BuildValue("(i,s)", tdb_error(tdb), tdb_errorstr(tdb)));
when Py_BuildValue() succeeds
calling PyErr_SetObject()
new ref from call to Py_BuildValue allocated at: 	PyErr_SetObject(PyExc_RuntimeError,
ob_refcnt is now refs: 1 + N where N >= 0
ob_refcnt is now refs: 1 + N where N >= 1
49 }
50 
returning ob_refcnt of new ref from call to Py_BuildValue is 1 too high was expecting final ob_refcnt to be N + 0 (for some unknown N) but final ob_refcnt is N + 1