Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion doc/source/changes/version_0_32.rst.inc
Original file line number Diff line number Diff line change
Expand Up @@ -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`).
2 changes: 1 addition & 1 deletion larray/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down