Skip to content

Commit 87cb078

Browse files
committed
fix #816 : added the missing zip_array_values() and zip_array_items() functions to the __all__ list in the top __init__.py module
1 parent 542cd05 commit 87cb078

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

doc/source/changes/version_0_32.rst.inc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,7 @@ Fixes
5757
* fixed binary operations between a session and an array object (closes :issue:`807`).
5858

5959
* fixed the :py:obj:`Array.reindex()` printing a spurious warning message when the
60-
`axes_to_reindex` argument is the name of the axis to reindex (closes :issue:`812`)
60+
`axes_to_reindex` argument is the name of the axis to reindex (closes :issue:`812`).
61+
62+
* fixed :py:obj:`zip_array_values()` and :py:obj:`zip_array_items()` functions not available
63+
when importing the entire larray library as ``from larray import *`` (closes :issue:`816`).

larray/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
'Array', 'zeros', 'zeros_like', 'ones', 'ones_like', 'empty', 'empty_like', 'full',
5757
'full_like', 'sequence', 'labels_array', 'ndtest', 'asarray', 'identity', 'diag', 'eye',
5858
'all', 'any', 'sum', 'prod', 'cumsum', 'cumprod', 'min', 'max', 'mean', 'ptp', 'var', 'std',
59-
'median', 'percentile', 'stack',
59+
'median', 'percentile', 'stack', 'zip_array_values', 'zip_array_items',
6060
# session
6161
'Session', 'local_arrays', 'global_arrays', 'arrays',
6262
# constants

0 commit comments

Comments
 (0)