summaryrefslogtreecommitdiff
path: root/_testdoubleloadmodule.cpp
diff options
context:
space:
mode:
Diffstat (limited to '_testdoubleloadmodule.cpp')
-rw-r--r--_testdoubleloadmodule.cpp23
1 files changed, 0 insertions, 23 deletions
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 <Python.h>
-
-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;
-}
-