summaryrefslogtreecommitdiff
path: root/numpy/core/multiarray.py
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2021-11-10 00:16:56 +0200
committermattip <matti.picus@gmail.com>2021-11-10 00:23:26 +0200
commit6312c18e99dad89231b65693a05c92c1f06d3671 (patch)
treef3ffa4524db016a33765feced29fbab19bfdd40c /numpy/core/multiarray.py
parente1239e7152c87fa97266f62e107d383905e6006c (diff)
downloadnumpy-6312c18e99dad89231b65693a05c92c1f06d3671.tar.gz
ENH: add a 'version' field to PyDataMem_Handler
Diffstat (limited to 'numpy/core/multiarray.py')
-rw-r--r--numpy/core/multiarray.py16
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'