diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2008-05-22 22:07:16 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2008-05-22 22:07:16 +0000 |
commit | ed222704c323f2a7038790842ec32c1ba8b26a4d (patch) | |
tree | a81d975d6abe5109caab4844908dfd8683328e34 /numpy/core/src/arrayobject.c | |
parent | 39b8259692f4eafd56621a563bac5095ecfc2e7a (diff) | |
download | numpy-ed222704c323f2a7038790842ec32c1ba8b26a4d.tar.gz |
Add PyArray_CompareString to multiarray_api instead of
array_api so as not to disturb the current order of the API.
Diffstat (limited to 'numpy/core/src/arrayobject.c')
-rw-r--r-- | numpy/core/src/arrayobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/arrayobject.c b/numpy/core/src/arrayobject.c index be828cde5..deee178b7 100644 --- a/numpy/core/src/arrayobject.c +++ b/numpy/core/src/arrayobject.c @@ -4433,7 +4433,7 @@ PyArray_CompareUCS4(npy_ucs4 *s1, npy_ucs4 *s2, register size_t len) return 0; } -/*OBJECT_API +/*MULTIARRAY_API */ static int PyArray_CompareString(char *s1, char *s2, size_t len) |