Skip to content

Fix versionadded tag in zarr.core.Array docstring #852

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 20, 2021
Merged
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
6 changes: 5 additions & 1 deletion zarr/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ class Array:
If True and while the chunk_store is a FSStore and the compresion used
is Blosc, when getting data from the array chunks will be partially
read and decompressed when possible.

.. versionadded:: 2.7

write_empty_chunks : bool, optional
If True (default), all chunks will be stored regardless of their
contents. If False, each chunk is compared to the array's fill
Expand All @@ -85,7 +88,8 @@ class Array:
as only chunks with non-fill-value data are stored, at the expense
of overhead associated with checking the data of each chunk.

.. versionadded:: 2.7
.. versionadded:: 2.11


Attributes
----------
Expand Down