diff options
| author | Travis Oliphant <oliphant@enthought.com> | 2006-01-20 10:20:33 +0000 |
|---|---|---|
| committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-20 10:20:33 +0000 |
| commit | 9ccdfb64beb215ca845e07aa469d13a968dc8676 (patch) | |
| tree | 7c74ab632deee5932e6b61a48764c9b6ef0ca6e5 /numpy/core/src | |
| parent | e8d618404b33962e896c45c6419c5daabdee4961 (diff) | |
| download | numpy-9ccdfb64beb215ca845e07aa469d13a968dc8676.tar.gz | |
Change order of descriptor functions to match required vs. non-required.
Diffstat (limited to 'numpy/core/src')
| -rw-r--r-- | numpy/core/src/arraytypes.inc.src | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/core/src/arraytypes.inc.src b/numpy/core/src/arraytypes.inc.src index 869f7113d..3632c7f6b 100644 --- a/numpy/core/src/arraytypes.inc.src +++ b/numpy/core/src/arraytypes.inc.src @@ -1616,12 +1616,12 @@ static PyArray_ArrFuncs _Py@NAME@_ArrFuncs = { }, (PyArray_GetItemFunc*)@from@_getitem, (PyArray_SetItemFunc*)@from@_setitem, + (PyArray_CopySwapNFunc*)@from@_copyswapn, + (PyArray_CopySwapFunc*)@from@_copyswap, (PyArray_CompareFunc*)@from@_compare, (PyArray_ArgFunc*)@from@_argmax, (PyArray_DotFunc*)NULL, (PyArray_ScanFunc*)@from@_scan, - (PyArray_CopySwapNFunc*)@from@_copyswapn, - (PyArray_CopySwapFunc*)@from@_copyswap, (PyArray_NonzeroFunc*)@from@_nonzero, (PyArray_FillFunc*)NULL, { @@ -1684,12 +1684,12 @@ static PyArray_ArrFuncs _Py@NAME@_ArrFuncs = { }, (PyArray_GetItemFunc*)@from@_getitem, (PyArray_SetItemFunc*)@from@_setitem, + (PyArray_CopySwapNFunc*)@from@_copyswapn, + (PyArray_CopySwapFunc*)@from@_copyswap, (PyArray_CompareFunc*)@from@_compare, (PyArray_ArgFunc*)@from@_argmax, (PyArray_DotFunc*)@from@_dot, (PyArray_ScanFunc*)@from@_scan, - (PyArray_CopySwapNFunc*)@from@_copyswapn, - (PyArray_CopySwapFunc*)@from@_copyswap, (PyArray_NonzeroFunc*)@from@_nonzero, (PyArray_FillFunc*)@from@_fill, { |
