From 5ad2fc7d6be7e499f55ae3c413f06003136c86f3 Mon Sep 17 00:00:00 2001 From: Daniel Drake Date: Wed, 14 Dec 2011 23:22:15 +0000 Subject: [PATCH] SugarExt: drop pygobject2 initialisation Now that we avoid linking with pygtk2/pygobject2, we need to remove this initialisation call so that the module can be loaded at runtime. Signed-off-by: Daniel Drake Acked-by: Simon Schampijer --- src/sugar3/_sugarbaseextmodule.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/sugar3/_sugarbaseextmodule.c b/src/sugar3/_sugarbaseextmodule.c index ebc13101..57fb1395 100644 --- a/src/sugar3/_sugarbaseextmodule.c +++ b/src/sugar3/_sugarbaseextmodule.c @@ -31,8 +31,6 @@ init_sugarbaseext(void) { PyObject *m, *d; - init_pygobject (); - m = Py_InitModule ("_sugarbaseext", py_sugarbaseext_functions); d = PyModule_GetDict (m);