diff options
author | mattip <matti.picus@gmail.com> | 2018-07-17 20:28:16 -0700 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2018-08-21 20:04:32 +0300 |
commit | 9592ee2ab5abb5e8dfd964c13c4941b2523de9be (patch) | |
tree | a25d8f24616a5e02fc7919d4325cd4827254aafd /numpy/core/multiarray.py | |
parent | c9914e4373e5c3cbad523320c68211a6c19c714a (diff) | |
download | numpy-9592ee2ab5abb5e8dfd964c13c4941b2523de9be.tar.gz |
MAINT: export newly added c-extension function
Diffstat (limited to 'numpy/core/multiarray.py')
-rw-r--r-- | numpy/core/multiarray.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/multiarray.py b/numpy/core/multiarray.py index 77e59c70c..c1db75864 100644 --- a/numpy/core/multiarray.py +++ b/numpy/core/multiarray.py @@ -1,14 +1,14 @@ from . import _multiarray_umath from numpy.core._multiarray_umath import * from numpy.core._multiarray_umath import (_fastCopyAndTranspose, _flagdict, _insert, - _reconstruct, _vec_string, _ARRAY_API) + _reconstruct, _vec_string, _ARRAY_API, _monotonicity) __all__ = ['_ARRAY_API', 'ALLOW_THREADS', 'BUFSIZE', 'CLIP', 'DATETIMEUNITS', 'ITEM_HASOBJECT', 'ITEM_IS_POINTER', 'LIST_PICKLE', 'MAXDIMS', 'MAY_SHARE_BOUNDS', 'MAY_SHARE_EXACT', 'NEEDS_INIT', 'NEEDS_PYAPI', 'RAISE', 'USE_GETITEM', 'USE_SETITEM', 'WRAP', '_fastCopyAndTranspose', '_flagdict', '_insert', '_reconstruct', - '_vec_string', + '_vec_string', '_monotonicity', 'add_docstring', 'arange', 'array', 'bincount', 'broadcast', 'busday_count', 'busday_offset', 'busdaycalendar', 'can_cast', 'compare_chararrays', 'concatenate', 'copyto', 'correlate', 'correlate2', 'count_nonzero', |