diff options
author | Travis Oliphant <oliphant@enthought.com> | 2010-02-15 23:14:19 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2010-02-15 23:14:19 +0000 |
commit | 5100a74ec5f53f257b3071a3b8ed525137f8288c (patch) | |
tree | 3673b1429dffbc1e6766d1f9e243478a761fcb58 | |
parent | 20ec480ff8979fce00ab076ef74893815bf88f4e (diff) | |
download | numpy-5100a74ec5f53f257b3071a3b8ed525137f8288c.tar.gz |
Update ordering of cast functions which was incorrectly placed.
-rw-r--r-- | numpy/core/src/multiarray/arraytypes.c.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/multiarray/arraytypes.c.src b/numpy/core/src/multiarray/arraytypes.c.src index a1bb08ed3..f32d54c5c 100644 --- a/numpy/core/src/multiarray/arraytypes.c.src +++ b/numpy/core/src/multiarray/arraytypes.c.src @@ -3452,9 +3452,9 @@ static PyArray_ArrFuncs _Py@NAME@_ArrFuncs = { (PyArray_VectorUnaryFunc*)@from@_to_CFLOAT, (PyArray_VectorUnaryFunc*)@from@_to_CDOUBLE, (PyArray_VectorUnaryFunc*)@from@_to_CLONGDOUBLE, - (PyArray_VectorUnaryFunc*)@from@_to_OBJECT, (PyArray_VectorUnaryFunc*)@from@_to_DATETIME, (PyArray_VectorUnaryFunc*)@from@_to_TIMEDELTA, + (PyArray_VectorUnaryFunc*)@from@_to_OBJECT, (PyArray_VectorUnaryFunc*)@from@_to_STRING, (PyArray_VectorUnaryFunc*)@from@_to_UNICODE, (PyArray_VectorUnaryFunc*)@from@_to_VOID |