diff --git a/doc/source/changes/version_0_32.rst.inc b/doc/source/changes/version_0_32.rst.inc index 932135714..b8d87b480 100644 --- a/doc/source/changes/version_0_32.rst.inc +++ b/doc/source/changes/version_0_32.rst.inc @@ -57,4 +57,7 @@ Fixes * fixed binary operations between a session and an array object (closes :issue:`807`). * fixed the :py:obj:`Array.reindex()` printing a spurious warning message when the - `axes_to_reindex` argument is the name of the axis to reindex (closes :issue:`812`) + `axes_to_reindex` argument is the name of the axis to reindex (closes :issue:`812`). + +* fixed :py:obj:`zip_array_values()` and :py:obj:`zip_array_items()` functions not available + when importing the entire larray library as ``from larray import *`` (closes :issue:`816`). diff --git a/larray/__init__.py b/larray/__init__.py index 66eb614ba..93af7c137 100644 --- a/larray/__init__.py +++ b/larray/__init__.py @@ -56,7 +56,7 @@ 'Array', 'zeros', 'zeros_like', 'ones', 'ones_like', 'empty', 'empty_like', 'full', 'full_like', 'sequence', 'labels_array', 'ndtest', 'asarray', 'identity', 'diag', 'eye', 'all', 'any', 'sum', 'prod', 'cumsum', 'cumprod', 'min', 'max', 'mean', 'ptp', 'var', 'std', - 'median', 'percentile', 'stack', + 'median', 'percentile', 'stack', 'zip_array_values', 'zip_array_items', # session 'Session', 'local_arrays', 'global_arrays', 'arrays', # constants