Removed debug output
[ephy-history.git] / ephyhistorymodule.c
blobd8d9502ab5a81e67c722b0366861cb7e83b5e29e
1 #include <pygobject.h>
3 void ephyhistory_register_classes (PyObject *d);
4 extern PyMethodDef ephyhistory_functions[];
6 DL_EXPORT(void)
7 initephyhistory(void)
9 PyObject *m, *d;
11 init_pygobject ();
13 m = Py_InitModule ("ephyhistory", ephyhistory_functions);
14 d = PyModule_GetDict (m);
16 ephyhistory_register_classes (d);
18 if (PyErr_Occurred ()) {
19 Py_FatalError ("can't initialise module ephyhistory");