Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/extensions/_extensionsmodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/extensions/_extensionsmodule.c')
-rw-r--r--shell/extensions/_extensionsmodule.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/shell/extensions/_extensionsmodule.c b/shell/extensions/_extensionsmodule.c
deleted file mode 100644
index 76d7e53..0000000
--- a/shell/extensions/_extensionsmodule.c
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-/* include this first, before NO_IMPORT_PYGOBJECT is defined */
-#include <pygobject.h>
-
-void py_extensions_register_classes (PyObject *d);
-
-extern PyMethodDef py_extensions_functions[];
-
-DL_EXPORT(void)
-init_extensions(void)
-{
- PyObject *m, *d;
-
- init_pygobject ();
-
- m = Py_InitModule ("_extensions", py_extensions_functions);
- d = PyModule_GetDict (m);
-
- py_extensions_register_classes (d);
-
- if (PyErr_Occurred ()) {
- Py_FatalError ("can't initialise module _sugar");
- }
-}