File: audiomodule.c
Function: initaudio
Error: ob_refcnt of new ref from (unknown) pygobject_init is 1 too high
39 DL_EXPORT(void)
40 initaudio (void)
41 {
42 	PyObject *m, *d;
43 
44 	init_pygobject ();
when pygobject_init() succeeds
taking False path
returning
ob_refcnt of new ref from (unknown) pygobject_init is 1 too high
was expecting final ob_refcnt to be N + 0 (for some unknown N)
but final ob_refcnt is N + 1
new ref from (unknown) pygobject_init allocated at: 	init_pygobject ();
found 1 similar trace(s) to this
ob_refcnt is now refs: 1 + N where N >= 0
45 
46 	m = Py_InitModule ("audio", pyaudio_functions);
when Py_InitModule4_64() succeeds
47 	d = PyModule_GetDict (m);
48 
49 	pyaudio_register_classes (d);
50 	pyaudio_add_constants (m, "GST_");
51 	
52 	if (PyErr_Occurred ()) {
PyErr_Occurred()
taking False path
53 	    PyErr_Print ();
54 	    Py_FatalError ("can't initialize module gst.audio");
55 	}
56 }