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:39:52 -0400
commit5e60e0e3af85f22aa0afe8bf0ecf85619afacfeb (patch)
tree6a91a3de86fa8de0b4167cc947ab72991bf8da31 /_testdoubleloadmodule.cpp
parent30e9097985656920f01a72efc1088caa2b8d41b3 (diff)
Imported Upstream version 0.6.0.12upstream/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;
-}
-