diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2008-08-27 03:17:51 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2008-08-27 03:17:51 +0000 |
commit | 88c8abb00f49bdabd3b336f0bf0a8efaf6887acd (patch) | |
tree | dc644b453fb7f9c225974aed6b4092d2a9c96a76 /numpy/core/src/arrayobject.c | |
parent | d4a1e796a44cbfaf087e8ce8feee61ca42447aee (diff) | |
download | numpy-88c8abb00f49bdabd3b336f0bf0a8efaf6887acd.tar.gz |
Revert r5698, r5699, and r5702 until build problems are fixed.
Fix ticket #878 differently.
Diffstat (limited to 'numpy/core/src/arrayobject.c')
-rw-r--r-- | numpy/core/src/arrayobject.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/numpy/core/src/arrayobject.c b/numpy/core/src/arrayobject.c index 586e7081a..ad3cbc4f2 100644 --- a/numpy/core/src/arrayobject.c +++ b/numpy/core/src/arrayobject.c @@ -3351,7 +3351,6 @@ typedef struct { *logical_and, *floor, *ceil, - *trunc, *maximum, *minimum, *rint, @@ -3409,7 +3408,6 @@ PyArray_SetNumericOps(PyObject *dict) SET(logical_and); SET(floor); SET(ceil); - SET(trunc); SET(maximum); SET(minimum); SET(rint); @@ -3460,7 +3458,6 @@ PyArray_GetNumericOps(void) GET(logical_and); GET(floor); GET(ceil); - GET(trunc); GET(maximum); GET(minimum); GET(rint); |