From 1fae093527f69de086934f5df750cf374eaa2f48 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Tue, 5 Aug 2008 14:52:52 +0000 Subject: Move all python binding related files inside the python subdirectory --- bindings/lang_python_wrapper_bottom.c | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 bindings/lang_python_wrapper_bottom.c (limited to 'bindings/lang_python_wrapper_bottom.c') diff --git a/bindings/lang_python_wrapper_bottom.c b/bindings/lang_python_wrapper_bottom.c deleted file mode 100644 index 51de44b0..00000000 --- a/bindings/lang_python_wrapper_bottom.c +++ /dev/null @@ -1,18 +0,0 @@ -PyMODINIT_FUNC -init_lasso(void) -{ - PyObject *m, *d; - - if (PyType_Ready(&PyGObjectPtrType) < 0) - return; - - m = Py_InitModule3("_lasso", lasso_methods, "_lasso wrapper module"); - d = PyModule_GetDict(m); - register_constants(d); - - lasso_wrapper_key = g_quark_from_static_string("PyLasso::wrapper"); - - Py_INCREF(&PyGObjectPtrType); - PyModule_AddObject(m, "PyGObjectPtr", (PyObject *)&PyGObjectPtrType); -} - -- cgit