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/numarray | |
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/numarray')
-rw-r--r-- | numpy/numarray/_capi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/numarray/_capi.c b/numpy/numarray/_capi.c index 78187c50e..032379515 100644 --- a/numpy/numarray/_capi.c +++ b/numpy/numarray/_capi.c @@ -3394,7 +3394,7 @@ static struct PyModuleDef moduledef = { NULL }; -PyObject *PyInit__capi(void) +PyMODINIT_FUNC PyInit__capi(void) #else #define RETVAL |