Skip to content

Commit 2b82ea2

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 5ab8316 commit 2b82ea2

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

doc/source/changes/version_0_32.rst.inc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,6 @@ Fixes
5555
^^^^^
5656

5757
* fixed binary operations between a session and an array object (closes :issue:`807`).
58+
59+
* fixed :py:obj:`zip_array_values()` and :py:obj:`zip_array_items()` functions not available
60+
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)