diff options
author | njsmith <njs@pobox.com> | 2012-09-17 09:25:43 -0700 |
---|---|---|
committer | njsmith <njs@pobox.com> | 2012-09-17 09:25:43 -0700 |
commit | 9597b1fdef7c46b0d1b1485fb680099ec7115f76 (patch) | |
tree | d1de0cedc4d9c91ee651b8651519e14744c267b4 /numpy/lib | |
parent | 58aefff1ab5a23a42db29479bc05cc93237588e1 (diff) | |
parent | ead9e09c5adbc94bfc3c5cc8344089b836cfffd5 (diff) | |
download | numpy-9597b1fdef7c46b0d1b1485fb680099ec7115f76.tar.gz |
Merge pull request #419 from stefanv/modinit
Use PyMODINIT_FUNC and update docs accordingly.
Diffstat (limited to 'numpy/lib')
-rw-r--r-- | numpy/lib/src/_compiled_base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/src/_compiled_base.c b/numpy/lib/src/_compiled_base.c index d389b7f8e..41caca962 100644 --- a/numpy/lib/src/_compiled_base.c +++ b/numpy/lib/src/_compiled_base.c @@ -1708,7 +1708,7 @@ static struct PyModuleDef moduledef = { #if defined(NPY_PY3K) #define RETVAL m -PyObject *PyInit__compiled_base(void) +PyMODINIT_FUNC PyInit__compiled_base(void) #else #define RETVAL PyMODINIT_FUNC |