diff options
author | mattip <matti.picus@gmail.com> | 2018-04-24 17:09:17 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2018-08-21 20:03:07 +0300 |
commit | 31df302656b88df2937c5ac338c96b1a0ec6d687 (patch) | |
tree | 6210fefcf27e20a7259071d609febf114692d796 /numpy/core/multiarray.py | |
parent | 0b5dfb0fb2a678652b45849ccf96982f89f010a8 (diff) | |
download | numpy-31df302656b88df2937c5ac338c96b1a0ec6d687.tar.gz |
MAINT: merge umath, multiarray into _multiarray, add python wrappers
Diffstat (limited to 'numpy/core/multiarray.py')
-rw-r--r-- | numpy/core/multiarray.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/numpy/core/multiarray.py b/numpy/core/multiarray.py new file mode 100644 index 000000000..89759458b --- /dev/null +++ b/numpy/core/multiarray.py @@ -0,0 +1,27 @@ +from . import _multiarray_umath +from numpy.core._multiarray_umath import * +from numpy.core._multiarray_umath import (_fastCopyAndTranspose, _flagdict, _insert, + _reconstruct, _vec_string) + +__all__ = ['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', + 'add_docstring', 'arange', 'array', 'bincount', 'broadcast', 'busday_count', + 'busday_offset', 'busdaycalendar', 'can_cast', 'compare_chararrays', + 'concatenate', 'copyto', 'correlate', 'correlate2', 'count_nonzero', + 'c_einsum', 'datetime_as_string', 'datetime_data', 'digitize', 'dot', + 'dragon4_positional', 'dragon4_scientific', 'dtype', 'empty', 'empty_like', + 'error', 'flagsobj', 'flatiter', 'format_longfloat', 'frombuffer', + 'fromfile', 'fromiter', 'fromstring', 'getbuffer', 'inner', 'int_asbuffer', + 'interp', 'interp_complex', 'is_busday', 'lexsort', 'matmul', + 'may_share_memory', 'min_scalar_type', 'ndarray', 'nditer', 'nested_iters', + 'newbuffer', 'normalize_axis_index', 'packbits', 'promote_types', + 'putmask', 'ravel_multi_index', 'result_type', 'scalar', + 'set_datetimeparse_function', 'set_legacy_print_mode', 'set_numeric_ops', + 'set_string_function', 'set_typeDict', 'shares_memory', 'test_interrupt', + 'tracemalloc_domain', 'typeinfo', 'unpackbits', 'unravel_index', 'vdot', + 'where', 'zeros'] + |