@@ -182,7 +182,7 @@ which can be used to print useful diagnostics, e.g.::
182182 >>> z.info
183183 Type : Array
184184 Zarr format : 3
185- Data type : DataType.int32
185+ Data type : Int32(endianness='little')
186186 Fill value : 0
187187 Shape : (10000, 10000)
188188 Chunk shape : (1000, 1000)
@@ -200,7 +200,7 @@ prints additional diagnostics, e.g.::
200200 >>> z.info_complete()
201201 Type : Array
202202 Zarr format : 3
203- Data type : DataType.int32
203+ Data type : Int32(endianness='little')
204204 Fill value : 0
205205 Shape : (10000, 10000)
206206 Chunk shape : (1000, 1000)
@@ -248,7 +248,7 @@ built-in delta filter::
248248The default compressor can be changed by setting the value of the using Zarr's
249249:ref: `user-guide-config `, e.g.::
250250
251- >>> with zarr.config.set({'array.v2_default_compressor.numeric ': {'id': 'blosc'}}):
251+ >>> with zarr.config.set({'array.v2_default_compressor.default ': {'id': 'blosc'}}):
252252 ... z = zarr.create_array(store={}, shape=(100000000,), chunks=(1000000,), dtype='int32', zarr_format=2)
253253 >>> z.filters
254254 ()
@@ -288,7 +288,7 @@ Here is an example using a delta filter with the Blosc compressor::
288288 >>> z.info
289289 Type : Array
290290 Zarr format : 3
291- Data type : DataType.int32
291+ Data type : Int32(endianness='little')
292292 Fill value : 0
293293 Shape : (10000, 10000)
294294 Chunk shape : (1000, 1000)
@@ -603,7 +603,7 @@ Sharded arrays can be created by providing the ``shards`` parameter to :func:`za
603603 >>> a.info_complete()
604604 Type : Array
605605 Zarr format : 3
606- Data type : DataType.uint8
606+ Data type : UInt8()
607607 Fill value : 0
608608 Shape : (10000, 10000)
609609 Shard shape : (1000, 1000)
@@ -612,10 +612,10 @@ Sharded arrays can be created by providing the ``shards`` parameter to :func:`za
612612 Read-only : False
613613 Store type : LocalStore
614614 Filters : ()
615- Serializer : BytesCodec(endian=<Endian.little: 'little'> )
615+ Serializer : BytesCodec(endian=None )
616616 Compressors : (ZstdCodec(level=0, checksum=False),)
617617 No. bytes : 100000000 (95.4M)
618- No. bytes stored : 3981552
618+ No. bytes stored : 3981473
619619 Storage ratio : 25.1
620620 Shards Initialized : 100
621621
0 commit comments