@@ -241,7 +241,7 @@ built-in delta filter::
241
241
>>> data = np.arange(100000000, dtype='int32').reshape(10000, 10000)
242
242
>>> z = zarr.create_array(store='data/example-7.zarr', shape=data.shape, dtype=data.dtype, chunks=(1000, 1000), compressors=compressors)
243
243
>>> z.compressors
244
- (_make_bytes_bytes_codec.<locals>._Codec (codec_name='numcodecs.lzma', codec_config={'id': 'lzma', 'filters': [{'id': 3, 'dist': 4}, {'id': 33, 'preset': 1}]}),)
244
+ (LZMA (codec_name='numcodecs.lzma', codec_config={'filters': [{'id': 3, 'dist': 4}, {'id': 33, 'preset': 1}]}),)
245
245
246
246
The default compressor can be changed by setting the value of the using Zarr's
247
247
:ref: `user-guide-config `, e.g.::
@@ -292,7 +292,7 @@ Here is an example using a delta filter with the Blosc compressor::
292
292
Order : C
293
293
Read-only : False
294
294
Store type : LocalStore
295
- Filters : (_make_array_array_codec.<locals>._Codec (codec_name='numcodecs.delta', codec_config={'id': 'delta', 'dtype': 'int32'}),)
295
+ Filters : (Delta (codec_name='numcodecs.delta', codec_config={'dtype': 'int32'}),)
296
296
Serializer : BytesCodec(endian=<Endian.little: 'little'>)
297
297
Compressors : (BloscCodec(typesize=4, cname=<BloscCname.zstd: 'zstd'>, clevel=1, shuffle=<BloscShuffle.shuffle: 'shuffle'>, blocksize=0),)
298
298
No. bytes : 400000000 (381.5M)
0 commit comments