File: src/kerberos.c
Function: initkerberos
Error: ob_refcnt of '*KrbException_class.1' is 1 too high
398 PyMODINIT_FUNC initkerberos(void)
399 {
400     PyObject *m,*d;
401 
402     m = Py_InitModule("kerberos", KerberosMethods);
403 
when Py_InitModule4_64() succeeds
404     d = PyModule_GetDict(m);
405 
406     /* create the base exception class */
407     if (!(KrbException_class = PyErr_NewException("kerberos.KrbError", NULL, NULL)))
408         goto error;
when PyErr_NewException() succeeds
taking False path
new exception object from PyErr_NewException allocated at:     if (!(KrbException_class = PyErr_NewException("kerberos.KrbError", NULL, NULL)))
ob_refcnt is now refs: 1 + N where N >= 0
'*KrbException_class.1' is now referenced by 1 non-stack value(s): KrbException_class
409     PyDict_SetItemString(d, "KrbError", KrbException_class);
410     Py_INCREF(KrbException_class);
when PyDict_SetItemString() succeeds
ob_refcnt is now refs: 1 + N where N >= 1
411 
ob_refcnt is now refs: 2 + N where N >= 1
412     /* ...and the derived exceptions */
413     if (!(BasicAuthException_class = PyErr_NewException("kerberos.BasicAuthError", KrbException_class, NULL)))
414         goto error;
when PyErr_NewException() succeeds
taking False path
415     Py_INCREF(BasicAuthException_class);
416     PyDict_SetItemString(d, "BasicAuthError", BasicAuthException_class);
417 
when PyDict_SetItemString() succeeds
418     if (!(PwdChangeException_class = PyErr_NewException("kerberos.PwdChangeError", KrbException_class, NULL)))
419         goto error;
when PyErr_NewException() succeeds
taking False path
420     Py_INCREF(PwdChangeException_class);
421     PyDict_SetItemString(d, "PwdChangeError", PwdChangeException_class);                                                                                                                                               
422 
when PyDict_SetItemString() succeeds
423     if (!(GssException_class = PyErr_NewException("kerberos.GSSError", KrbException_class, NULL)))
424         goto error;
when PyErr_NewException() succeeds
taking False path
425     Py_INCREF(GssException_class);
426     PyDict_SetItemString(d, "GSSError", GssException_class);
427 
when PyDict_SetItemString() succeeds
428     PyDict_SetItemString(d, "AUTH_GSS_COMPLETE", PyInt_FromLong(AUTH_GSS_COMPLETE)); 
429     PyDict_SetItemString(d, "AUTH_GSS_CONTINUE", PyInt_FromLong(AUTH_GSS_CONTINUE)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
430 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
431     PyDict_SetItemString(d, "GSS_C_DELEG_FLAG", PyInt_FromLong(GSS_C_DELEG_FLAG)); 
432     PyDict_SetItemString(d, "GSS_C_MUTUAL_FLAG", PyInt_FromLong(GSS_C_MUTUAL_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
433     PyDict_SetItemString(d, "GSS_C_REPLAY_FLAG", PyInt_FromLong(GSS_C_REPLAY_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
434     PyDict_SetItemString(d, "GSS_C_SEQUENCE_FLAG", PyInt_FromLong(GSS_C_SEQUENCE_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
435     PyDict_SetItemString(d, "GSS_C_CONF_FLAG", PyInt_FromLong(GSS_C_CONF_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
436     PyDict_SetItemString(d, "GSS_C_INTEG_FLAG", PyInt_FromLong(GSS_C_INTEG_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
437     PyDict_SetItemString(d, "GSS_C_ANON_FLAG", PyInt_FromLong(GSS_C_ANON_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
438     PyDict_SetItemString(d, "GSS_C_PROT_READY_FLAG", PyInt_FromLong(GSS_C_PROT_READY_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
439     PyDict_SetItemString(d, "GSS_C_TRANS_FLAG", PyInt_FromLong(GSS_C_TRANS_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
440 error:
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
441     if (PyErr_Occurred())
442         PyErr_SetString(PyExc_ImportError, "kerberos: init failed");
PyErr_Occurred()
taking False path
443 }
444 
returning ob_refcnt of '*KrbException_class.1' is 1 too high was expecting final ob_refcnt to be N + 1 (for some unknown N) due to object being referenced by: KrbException_class but final ob_refcnt is N + 2 found 15 similar trace(s) to this

File: src/kerberos.c
Function: initkerberos
Error: ob_refcnt of '*BasicAuthException_class.2' is 1 too high
398 PyMODINIT_FUNC initkerberos(void)
399 {
400     PyObject *m,*d;
401 
402     m = Py_InitModule("kerberos", KerberosMethods);
403 
when Py_InitModule4_64() succeeds
404     d = PyModule_GetDict(m);
405 
406     /* create the base exception class */
407     if (!(KrbException_class = PyErr_NewException("kerberos.KrbError", NULL, NULL)))
408         goto error;
when PyErr_NewException() succeeds
taking False path
409     PyDict_SetItemString(d, "KrbError", KrbException_class);
410     Py_INCREF(KrbException_class);
when PyDict_SetItemString() succeeds
411 
412     /* ...and the derived exceptions */
413     if (!(BasicAuthException_class = PyErr_NewException("kerberos.BasicAuthError", KrbException_class, NULL)))
414         goto error;
when PyErr_NewException() succeeds
taking False path
new exception object from PyErr_NewException allocated at:     if (!(BasicAuthException_class = PyErr_NewException("kerberos.BasicAuthError", KrbException_class, NULL)))
ob_refcnt is now refs: 1 + N where N >= 0
'*BasicAuthException_class.2' is now referenced by 1 non-stack value(s): BasicAuthException_class
415     Py_INCREF(BasicAuthException_class);
416     PyDict_SetItemString(d, "BasicAuthError", BasicAuthException_class);
ob_refcnt is now refs: 2 + N where N >= 0
417 
when PyDict_SetItemString() succeeds
ob_refcnt is now refs: 2 + N where N >= 1
418     if (!(PwdChangeException_class = PyErr_NewException("kerberos.PwdChangeError", KrbException_class, NULL)))
419         goto error;
when PyErr_NewException() succeeds
taking False path
420     Py_INCREF(PwdChangeException_class);
421     PyDict_SetItemString(d, "PwdChangeError", PwdChangeException_class);                                                                                                                                               
422 
when PyDict_SetItemString() succeeds
423     if (!(GssException_class = PyErr_NewException("kerberos.GSSError", KrbException_class, NULL)))
424         goto error;
when PyErr_NewException() succeeds
taking False path
425     Py_INCREF(GssException_class);
426     PyDict_SetItemString(d, "GSSError", GssException_class);
427 
when PyDict_SetItemString() succeeds
428     PyDict_SetItemString(d, "AUTH_GSS_COMPLETE", PyInt_FromLong(AUTH_GSS_COMPLETE)); 
429     PyDict_SetItemString(d, "AUTH_GSS_CONTINUE", PyInt_FromLong(AUTH_GSS_CONTINUE)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
430 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
431     PyDict_SetItemString(d, "GSS_C_DELEG_FLAG", PyInt_FromLong(GSS_C_DELEG_FLAG)); 
432     PyDict_SetItemString(d, "GSS_C_MUTUAL_FLAG", PyInt_FromLong(GSS_C_MUTUAL_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
433     PyDict_SetItemString(d, "GSS_C_REPLAY_FLAG", PyInt_FromLong(GSS_C_REPLAY_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
434     PyDict_SetItemString(d, "GSS_C_SEQUENCE_FLAG", PyInt_FromLong(GSS_C_SEQUENCE_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
435     PyDict_SetItemString(d, "GSS_C_CONF_FLAG", PyInt_FromLong(GSS_C_CONF_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
436     PyDict_SetItemString(d, "GSS_C_INTEG_FLAG", PyInt_FromLong(GSS_C_INTEG_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
437     PyDict_SetItemString(d, "GSS_C_ANON_FLAG", PyInt_FromLong(GSS_C_ANON_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
438     PyDict_SetItemString(d, "GSS_C_PROT_READY_FLAG", PyInt_FromLong(GSS_C_PROT_READY_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
439     PyDict_SetItemString(d, "GSS_C_TRANS_FLAG", PyInt_FromLong(GSS_C_TRANS_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
440 error:
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
441     if (PyErr_Occurred())
442         PyErr_SetString(PyExc_ImportError, "kerberos: init failed");
PyErr_Occurred()
taking False path
443 }
444 
returning ob_refcnt of '*BasicAuthException_class.2' is 1 too high was expecting final ob_refcnt to be N + 1 (for some unknown N) due to object being referenced by: BasicAuthException_class but final ob_refcnt is N + 2 found 15 similar trace(s) to this

File: src/kerberos.c
Function: initkerberos
Error: ob_refcnt of '*PwdChangeException_class.5' is 1 too high
398 PyMODINIT_FUNC initkerberos(void)
399 {
400     PyObject *m,*d;
401 
402     m = Py_InitModule("kerberos", KerberosMethods);
403 
when Py_InitModule4_64() succeeds
404     d = PyModule_GetDict(m);
405 
406     /* create the base exception class */
407     if (!(KrbException_class = PyErr_NewException("kerberos.KrbError", NULL, NULL)))
408         goto error;
when PyErr_NewException() succeeds
taking False path
409     PyDict_SetItemString(d, "KrbError", KrbException_class);
410     Py_INCREF(KrbException_class);
when PyDict_SetItemString() succeeds
411 
412     /* ...and the derived exceptions */
413     if (!(BasicAuthException_class = PyErr_NewException("kerberos.BasicAuthError", KrbException_class, NULL)))
414         goto error;
when PyErr_NewException() succeeds
taking False path
415     Py_INCREF(BasicAuthException_class);
416     PyDict_SetItemString(d, "BasicAuthError", BasicAuthException_class);
417 
when PyDict_SetItemString() succeeds
418     if (!(PwdChangeException_class = PyErr_NewException("kerberos.PwdChangeError", KrbException_class, NULL)))
419         goto error;
when PyErr_NewException() succeeds
taking False path
new exception object from PyErr_NewException allocated at:     if (!(PwdChangeException_class = PyErr_NewException("kerberos.PwdChangeError", KrbException_class, NULL)))
ob_refcnt is now refs: 1 + N where N >= 0
'*PwdChangeException_class.5' is now referenced by 1 non-stack value(s): PwdChangeException_class
420     Py_INCREF(PwdChangeException_class);
421     PyDict_SetItemString(d, "PwdChangeError", PwdChangeException_class);                                                                                                                                               
ob_refcnt is now refs: 2 + N where N >= 0
422 
when PyDict_SetItemString() succeeds
ob_refcnt is now refs: 2 + N where N >= 1
423     if (!(GssException_class = PyErr_NewException("kerberos.GSSError", KrbException_class, NULL)))
424         goto error;
when PyErr_NewException() succeeds
taking False path
425     Py_INCREF(GssException_class);
426     PyDict_SetItemString(d, "GSSError", GssException_class);
427 
when PyDict_SetItemString() succeeds
428     PyDict_SetItemString(d, "AUTH_GSS_COMPLETE", PyInt_FromLong(AUTH_GSS_COMPLETE)); 
429     PyDict_SetItemString(d, "AUTH_GSS_CONTINUE", PyInt_FromLong(AUTH_GSS_CONTINUE)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
430 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
431     PyDict_SetItemString(d, "GSS_C_DELEG_FLAG", PyInt_FromLong(GSS_C_DELEG_FLAG)); 
432     PyDict_SetItemString(d, "GSS_C_MUTUAL_FLAG", PyInt_FromLong(GSS_C_MUTUAL_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
433     PyDict_SetItemString(d, "GSS_C_REPLAY_FLAG", PyInt_FromLong(GSS_C_REPLAY_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
434     PyDict_SetItemString(d, "GSS_C_SEQUENCE_FLAG", PyInt_FromLong(GSS_C_SEQUENCE_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
435     PyDict_SetItemString(d, "GSS_C_CONF_FLAG", PyInt_FromLong(GSS_C_CONF_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
436     PyDict_SetItemString(d, "GSS_C_INTEG_FLAG", PyInt_FromLong(GSS_C_INTEG_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
437     PyDict_SetItemString(d, "GSS_C_ANON_FLAG", PyInt_FromLong(GSS_C_ANON_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
438     PyDict_SetItemString(d, "GSS_C_PROT_READY_FLAG", PyInt_FromLong(GSS_C_PROT_READY_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
439     PyDict_SetItemString(d, "GSS_C_TRANS_FLAG", PyInt_FromLong(GSS_C_TRANS_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
440 error:
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
441     if (PyErr_Occurred())
442         PyErr_SetString(PyExc_ImportError, "kerberos: init failed");
PyErr_Occurred()
taking False path
443 }
444 
returning ob_refcnt of '*PwdChangeException_class.5' is 1 too high was expecting final ob_refcnt to be N + 1 (for some unknown N) due to object being referenced by: PwdChangeException_class but final ob_refcnt is N + 2 found 15 similar trace(s) to this

File: src/kerberos.c
Function: initkerberos
Error: ob_refcnt of '*GssException_class.6' is 1 too high
398 PyMODINIT_FUNC initkerberos(void)
399 {
400     PyObject *m,*d;
401 
402     m = Py_InitModule("kerberos", KerberosMethods);
403 
when Py_InitModule4_64() succeeds
404     d = PyModule_GetDict(m);
405 
406     /* create the base exception class */
407     if (!(KrbException_class = PyErr_NewException("kerberos.KrbError", NULL, NULL)))
408         goto error;
when PyErr_NewException() succeeds
taking False path
409     PyDict_SetItemString(d, "KrbError", KrbException_class);
410     Py_INCREF(KrbException_class);
when PyDict_SetItemString() succeeds
411 
412     /* ...and the derived exceptions */
413     if (!(BasicAuthException_class = PyErr_NewException("kerberos.BasicAuthError", KrbException_class, NULL)))
414         goto error;
when PyErr_NewException() succeeds
taking False path
415     Py_INCREF(BasicAuthException_class);
416     PyDict_SetItemString(d, "BasicAuthError", BasicAuthException_class);
417 
when PyDict_SetItemString() succeeds
418     if (!(PwdChangeException_class = PyErr_NewException("kerberos.PwdChangeError", KrbException_class, NULL)))
419         goto error;
when PyErr_NewException() succeeds
taking False path
420     Py_INCREF(PwdChangeException_class);
421     PyDict_SetItemString(d, "PwdChangeError", PwdChangeException_class);                                                                                                                                               
422 
when PyDict_SetItemString() succeeds
423     if (!(GssException_class = PyErr_NewException("kerberos.GSSError", KrbException_class, NULL)))
424         goto error;
when PyErr_NewException() succeeds
taking False path
new exception object from PyErr_NewException allocated at:     if (!(GssException_class = PyErr_NewException("kerberos.GSSError", KrbException_class, NULL)))
ob_refcnt is now refs: 1 + N where N >= 0
'*GssException_class.6' is now referenced by 1 non-stack value(s): GssException_class
425     Py_INCREF(GssException_class);
426     PyDict_SetItemString(d, "GSSError", GssException_class);
ob_refcnt is now refs: 2 + N where N >= 0
427 
when PyDict_SetItemString() succeeds
ob_refcnt is now refs: 2 + N where N >= 1
428     PyDict_SetItemString(d, "AUTH_GSS_COMPLETE", PyInt_FromLong(AUTH_GSS_COMPLETE)); 
429     PyDict_SetItemString(d, "AUTH_GSS_CONTINUE", PyInt_FromLong(AUTH_GSS_CONTINUE)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
430 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
431     PyDict_SetItemString(d, "GSS_C_DELEG_FLAG", PyInt_FromLong(GSS_C_DELEG_FLAG)); 
432     PyDict_SetItemString(d, "GSS_C_MUTUAL_FLAG", PyInt_FromLong(GSS_C_MUTUAL_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
433     PyDict_SetItemString(d, "GSS_C_REPLAY_FLAG", PyInt_FromLong(GSS_C_REPLAY_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
434     PyDict_SetItemString(d, "GSS_C_SEQUENCE_FLAG", PyInt_FromLong(GSS_C_SEQUENCE_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
435     PyDict_SetItemString(d, "GSS_C_CONF_FLAG", PyInt_FromLong(GSS_C_CONF_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
436     PyDict_SetItemString(d, "GSS_C_INTEG_FLAG", PyInt_FromLong(GSS_C_INTEG_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
437     PyDict_SetItemString(d, "GSS_C_ANON_FLAG", PyInt_FromLong(GSS_C_ANON_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
438     PyDict_SetItemString(d, "GSS_C_PROT_READY_FLAG", PyInt_FromLong(GSS_C_PROT_READY_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
439     PyDict_SetItemString(d, "GSS_C_TRANS_FLAG", PyInt_FromLong(GSS_C_TRANS_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
440 error:
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
441     if (PyErr_Occurred())
442         PyErr_SetString(PyExc_ImportError, "kerberos: init failed");
PyErr_Occurred()
taking False path
443 }
444 
returning ob_refcnt of '*GssException_class.6' is 1 too high was expecting final ob_refcnt to be N + 1 (for some unknown N) due to object being referenced by: GssException_class but final ob_refcnt is N + 2 found 15 similar trace(s) to this

File: src/kerberos.c
Function: initkerberos
Error: ob_refcnt of PyIntObject is 1 too high
398 PyMODINIT_FUNC initkerberos(void)
399 {
400     PyObject *m,*d;
401 
402     m = Py_InitModule("kerberos", KerberosMethods);
403 
when Py_InitModule4_64() succeeds
404     d = PyModule_GetDict(m);
405 
406     /* create the base exception class */
407     if (!(KrbException_class = PyErr_NewException("kerberos.KrbError", NULL, NULL)))
408         goto error;
when PyErr_NewException() succeeds
taking False path
409     PyDict_SetItemString(d, "KrbError", KrbException_class);
410     Py_INCREF(KrbException_class);
when PyDict_SetItemString() succeeds
411 
412     /* ...and the derived exceptions */
413     if (!(BasicAuthException_class = PyErr_NewException("kerberos.BasicAuthError", KrbException_class, NULL)))
414         goto error;
when PyErr_NewException() succeeds
taking False path
415     Py_INCREF(BasicAuthException_class);
416     PyDict_SetItemString(d, "BasicAuthError", BasicAuthException_class);
417 
when PyDict_SetItemString() succeeds
418     if (!(PwdChangeException_class = PyErr_NewException("kerberos.PwdChangeError", KrbException_class, NULL)))
419         goto error;
when PyErr_NewException() succeeds
taking False path
420     Py_INCREF(PwdChangeException_class);
421     PyDict_SetItemString(d, "PwdChangeError", PwdChangeException_class);                                                                                                                                               
422 
when PyDict_SetItemString() succeeds
423     if (!(GssException_class = PyErr_NewException("kerberos.GSSError", KrbException_class, NULL)))
424         goto error;
when PyErr_NewException() succeeds
taking False path
425     Py_INCREF(GssException_class);
426     PyDict_SetItemString(d, "GSSError", GssException_class);
427 
when PyDict_SetItemString() succeeds
428     PyDict_SetItemString(d, "AUTH_GSS_COMPLETE", PyInt_FromLong(AUTH_GSS_COMPLETE)); 
429     PyDict_SetItemString(d, "AUTH_GSS_CONTINUE", PyInt_FromLong(AUTH_GSS_CONTINUE)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
PyIntObject allocated at:     PyDict_SetItemString(d, "AUTH_GSS_COMPLETE", PyInt_FromLong(AUTH_GSS_COMPLETE));
ob_refcnt is now refs: 1 + N where N >= 0
ob_refcnt is now refs: 1 + N where N >= 1
430 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
431     PyDict_SetItemString(d, "GSS_C_DELEG_FLAG", PyInt_FromLong(GSS_C_DELEG_FLAG)); 
432     PyDict_SetItemString(d, "GSS_C_MUTUAL_FLAG", PyInt_FromLong(GSS_C_MUTUAL_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
433     PyDict_SetItemString(d, "GSS_C_REPLAY_FLAG", PyInt_FromLong(GSS_C_REPLAY_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
434     PyDict_SetItemString(d, "GSS_C_SEQUENCE_FLAG", PyInt_FromLong(GSS_C_SEQUENCE_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
435     PyDict_SetItemString(d, "GSS_C_CONF_FLAG", PyInt_FromLong(GSS_C_CONF_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
436     PyDict_SetItemString(d, "GSS_C_INTEG_FLAG", PyInt_FromLong(GSS_C_INTEG_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
437     PyDict_SetItemString(d, "GSS_C_ANON_FLAG", PyInt_FromLong(GSS_C_ANON_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
438     PyDict_SetItemString(d, "GSS_C_PROT_READY_FLAG", PyInt_FromLong(GSS_C_PROT_READY_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
439     PyDict_SetItemString(d, "GSS_C_TRANS_FLAG", PyInt_FromLong(GSS_C_TRANS_FLAG)); 
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
440 error:
when PyInt_FromLong() succeeds
when PyDict_SetItemString() succeeds
441     if (PyErr_Occurred())
442         PyErr_SetString(PyExc_ImportError, "kerberos: init failed");
PyErr_Occurred()
taking False path
443 }
444 
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 175 similar trace(s) to this