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