summaryrefslogtreecommitdiff
path: root/numpy/core/src/dummymodule.c
diff options
context:
space:
mode:
authorPauli Virtanen <pav@iki.fi>2012-06-11 22:21:30 +0200
committerCharles Harris <charlesr.harris@gmail.com>2012-07-13 10:03:33 -0600
commit423ddfb0484eecdf825209337b20ec929f038b6f (patch)
treee1b6e153acbbaa3197181429f2ac78ed2ddea505 /numpy/core/src/dummymodule.c
parentce0a7912e2e909cae4c4d2fc6d9745a97d2161c2 (diff)
downloadnumpy-423ddfb0484eecdf825209337b20ec929f038b6f.tar.gz
STY: core: move non-Py3 specific stuff out from npy_3kcompat.h to private npy_pycompat.h
npy_3kcompat.h is semi-private, so this can be done.
Diffstat (limited to 'numpy/core/src/dummymodule.c')
-rw-r--r--numpy/core/src/dummymodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/dummymodule.c b/numpy/core/src/dummymodule.c
index eca6edb54..1d48709e9 100644
--- a/numpy/core/src/dummymodule.c
+++ b/numpy/core/src/dummymodule.c
@@ -9,7 +9,7 @@
#define NPY_NO_DEPRECATED_API NPY_API_VERSION
#include <Python.h>
-#include <numpy/npy_3kcompat.h>
+#include <npy_pycompat.h>
static struct PyMethodDef methods[] = {
{NULL, NULL, 0, NULL}