File: interfacesmodule.c
Function: initinterfaces
Error: ob_refcnt of new ref from (unknown) pygobject_init is 1 too high
36 DL_EXPORT(void)
37 initinterfaces (void)
38 {
39 	PyObject *m, *d;
40 
41 	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
42 
43 	m = Py_InitModule ("interfaces", pyinterfaces_functions);
when Py_InitModule4_64() succeeds
44 	d = PyModule_GetDict (m);
45 
46 	pyinterfaces_register_classes (d);
47 	pyinterfaces_add_constants (m, "GST_");
48 	
49 	if (PyErr_Occurred ()) {
PyErr_Occurred()
taking False path
50 	    PyErr_Print ();
51 	    Py_FatalError ("can't initialize module gst.interfaces");
52 	}
53 }