From 5e60e0e3af85f22aa0afe8bf0ecf85619afacfeb Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Thu, 22 Aug 2013 16:39:52 -0400 Subject: Imported Upstream version 0.6.0.12 --- _testdoubleloadmodule.cpp | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 _testdoubleloadmodule.cpp (limited to '_testdoubleloadmodule.cpp') diff --git a/_testdoubleloadmodule.cpp b/_testdoubleloadmodule.cpp deleted file mode 100644 index 61deeeb..0000000 --- a/_testdoubleloadmodule.cpp +++ /dev/null @@ -1,23 +0,0 @@ - -#include - -PyDoc_STRVAR(_testdoubleload__doc__, -"_testdoubleload -- just for testing ticket #9 per ticket #44\n\ -"); - -static PyMethodDef _testdoubleload_functions[] = { - {NULL, NULL, 0, NULL} /* sentinel */ -}; - -#ifndef PyMODINIT_FUNC /* declarations for DLL import/export */ -#define PyMODINIT_FUNC void -#endif -PyMODINIT_FUNC -init_testdoubleload(void) { - PyObject *module; - - module = Py_InitModule3("_testdoubleload", _testdoubleload_functions, _testdoubleload__doc__); - if (!module) - return; -} - -- cgit v1.2.3