diff options
author | David Cournapeau <cournape@gmail.com> | 2009-10-08 13:47:53 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-10-08 13:47:53 +0000 |
commit | efd4c9d3eb3577146ad53c42b6a3bc8763642e95 (patch) | |
tree | 7e43efbaace94939ff2087897821901df40298eb | |
parent | 52738fdb4a4882da6ac252a913e057cc984c7747 (diff) | |
download | numpy-efd4c9d3eb3577146ad53c42b6a3bc8763642e95.tar.gz |
ENH: split misc_api into global var and bool_values.
-rw-r--r-- | numpy/core/code_generators/numpy_api.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/numpy/core/code_generators/numpy_api.py b/numpy/core/code_generators/numpy_api.py index cc40b9c48..b50e10f25 100644 --- a/numpy/core/code_generators/numpy_api.py +++ b/numpy/core/code_generators/numpy_api.py @@ -1,5 +1,8 @@ -multiarray_misc_api = { +multiarray_global_vars = { 'NPY_NUMUSERTYPES': 7, +} + +multiarray_scalar_bool_values = { '_PyArrayScalar_BoolValues': 9 } |