diff options
author | David Cournapeau <cournape@gmail.com> | 2008-08-03 11:11:24 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-08-03 11:11:24 +0000 |
commit | 9156bdce373ed8f7d6e9813f5261bc6b2f473309 (patch) | |
tree | 56eec8ac482bdc07bedf59e4937d33a4c12e14a2 | |
parent | 7aa43a63d046f406f34d87865d2f3f7eb7b7cecf (diff) | |
download | numpy-9156bdce373ed8f7d6e9813f5261bc6b2f473309.tar.gz |
Fix method list sentinel in sortmodule.
-rw-r--r-- | numpy/core/src/_sortmodule.c.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/_sortmodule.c.src b/numpy/core/src/_sortmodule.c.src index bc2159791..8e2e742bd 100644 --- a/numpy/core/src/_sortmodule.c.src +++ b/numpy/core/src/_sortmodule.c.src @@ -846,7 +846,7 @@ add_sortfuncs(void) } static struct PyMethodDef methods[] = { - {NULL, NULL, 0} + {NULL, NULL, 0, NULL} }; PyMODINIT_FUNC |