diff options
author | mattip <matti.picus@gmail.com> | 2021-11-10 00:16:56 +0200 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2021-11-10 00:23:26 +0200 |
commit | 6312c18e99dad89231b65693a05c92c1f06d3671 (patch) | |
tree | f3ffa4524db016a33765feced29fbab19bfdd40c /numpy/core/multiarray.py | |
parent | e1239e7152c87fa97266f62e107d383905e6006c (diff) | |
download | numpy-6312c18e99dad89231b65693a05c92c1f06d3671.tar.gz |
ENH: add a 'version' field to PyDataMem_Handler
Diffstat (limited to 'numpy/core/multiarray.py')
-rw-r--r-- | numpy/core/multiarray.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/numpy/core/multiarray.py b/numpy/core/multiarray.py index f96274263..f88d75978 100644 --- a/numpy/core/multiarray.py +++ b/numpy/core/multiarray.py @@ -33,14 +33,14 @@ __all__ = [ 'dot', 'dragon4_positional', 'dragon4_scientific', 'dtype', 'empty', 'empty_like', 'error', 'flagsobj', 'flatiter', 'format_longfloat', 'frombuffer', 'fromfile', 'fromiter', 'fromstring', - 'get_handler_name', 'inner', 'interp', 'interp_complex', 'is_busday', - 'lexsort', 'matmul', 'may_share_memory', 'min_scalar_type', 'ndarray', - 'nditer', 'nested_iters', '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', - 'tracemalloc_domain', 'typeinfo', 'unpackbits', 'unravel_index', 'vdot', - 'where', 'zeros'] + 'get_handler_name', 'get_handler_version', 'inner', 'interp', + 'interp_complex', 'is_busday', 'lexsort', 'matmul', 'may_share_memory', + 'min_scalar_type', 'ndarray', 'nditer', 'nested_iters', + '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', 'tracemalloc_domain', 'typeinfo', + 'unpackbits', 'unravel_index', 'vdot', 'where', 'zeros'] # For backward compatibility, make sure pickle imports these functions from here _reconstruct.__module__ = 'numpy.core.multiarray' |