diff options
author | David Cournapeau <cournape@gmail.com> | 2009-10-08 13:49:37 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-10-08 13:49:37 +0000 |
commit | 13988663fee467d47f0074bdae45d982ab744bd9 (patch) | |
tree | 40e3beb90af5588e1f16a5e03f6d54c89823a095 | |
parent | 377105b1fe35c8ca9c2e01ef9d47a18593578ac0 (diff) | |
download | numpy-13988663fee467d47f0074bdae45d982ab744bd9.tar.gz |
ENH: change indexes to some datetime funcs to stay compatible with trunk.
-rw-r--r-- | numpy/core/code_generators/numpy_api.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/core/code_generators/numpy_api.py b/numpy/core/code_generators/numpy_api.py index 29b75438c..9ff915908 100644 --- a/numpy/core/code_generators/numpy_api.py +++ b/numpy/core/code_generators/numpy_api.py @@ -236,10 +236,10 @@ multiarray_funcs_api = { 'PyArray_Correlate2': 212, 'PyArray_NeighborhoodIterNew': 213, 'PyArray_SetDatetimeParseFunction': 214, -# 'PyArray_DatetimeToDatetimeStruct': 215, -# 'PyArray_TimedeltaToTimedeltaStruct': 216, -# 'PyArray_DatetimeStructToDatetime': 217, -# 'PyArray_TimedeltaStructToTimedelt': 218, + 'PyArray_DatetimeToDatetimeStruct': 218, + 'PyArray_TimedeltaToTimedeltaStruct': 219, + 'PyArray_DatetimeStructToDatetime': 220, + 'PyArray_TimedeltaStructToTimedelta': 221, } ufunc_api = { |