File: netsnmp/client_intf.c
Function: py_netsnmp_construct_varbind
Error: ob_refcnt of '*module' is 1 too high
1102 static PyObject * 
1103 py_netsnmp_construct_varbind(void)
1104 {
1105   PyObject *module;
1106   PyObject *dict;
1107   PyObject *callable;
1108 
1109   module = PyImport_ImportModule("netsnmp");
when PyImport_ImportModule() succeeds
PyModuleObject allocated at:   module = PyImport_ImportModule("netsnmp");
ob_refcnt is now refs: 1 + N where N >= 0
1110   dict = PyModule_GetDict(module);
1111 
1112   callable = PyDict_GetItemString(dict, "Varbind");
when PyDict_GetItemString() succeeds
1113 
1114   return PyObject_CallFunction(callable, "");
when PyObject_CallFunction() succeeds
returning
ob_refcnt of '*module' 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
1115 }