summaryrefslogtreecommitdiff
path: root/_testdoubleloadmodule.cpp
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2013-08-22 16:39:52 -0400
committerMicah Anderson <micah@riseup.net>2013-08-22 16:57:38 -0400
commit6d35b188b668c5007409e63a15e8340ed34dcfb8 (patch)
treec9dd25f3675b3b6f9b29b0786057f8a4d377bc2b /_testdoubleloadmodule.cpp
parent86a1089dc6694f58d0f3356bdf9c8fe4061421f5 (diff)
parent5e60e0e3af85f22aa0afe8bf0ecf85619afacfeb (diff)
Merge tag 'upstream/0.6.0.12'
Upstream version 0.6.0.12
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;
-}
-