Skip to content

Commit c8b96a5

Browse files
committed
ugly numcodecs class names
1 parent 635a35f commit c8b96a5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/user-guide/arrays.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ built-in delta filter::
239239
>>> data = np.arange(100000000, dtype='int32').reshape(10000, 10000)
240240
>>> z = zarr.create_array(store='data/example-7.zarr', shape=data.shape, dtype=data.dtype, chunks=(1000, 1000), compressors=compressors)
241241
>>> z.compressors
242-
(LZMA(codec_name='numcodecs.lzma', codec_config={'id': 'lzma', 'filters': [{'id': 3, 'dist': 4}, {'id': 33, 'preset': 1}]}),)
242+
(_make_bytes_bytes_codec.<locals>._Codec(codec_name='numcodecs.lzma', codec_config={'id': 'lzma', 'filters': [{'id': 3, 'dist': 4}, {'id': 33, 'preset': 1}]}),)
243243

244244
The default compressor can be changed by setting the value of the using Zarr's
245245
:ref:`user-guide-config`, e.g.::
@@ -290,7 +290,7 @@ Here is an example using a delta filter with the Blosc compressor::
290290
Order : C
291291
Read-only : False
292292
Store type : LocalStore
293-
Filters : (Delta(codec_name='numcodecs.delta', codec_config={'id': 'delta', 'dtype': 'int32'}),)
293+
Filters : (_make_array_array_codec.<locals>._Codec(codec_name='numcodecs.delta', codec_config={'id': 'delta', 'dtype': 'int32'}),)
294294
Serializer : BytesCodec(endian=<Endian.little: 'little'>)
295295
Compressors : (BloscCodec(typesize=4, cname=<BloscCname.zstd: 'zstd'>, clevel=1, shuffle=<BloscShuffle.shuffle: 'shuffle'>, blocksize=0),)
296296
No. bytes : 400000000 (381.5M)

0 commit comments

Comments
 (0)