You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/zarr/core/dtype/npy/bool.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ class Bool(ZDType[np.dtypes.BoolDType, np.bool_], HasItemSize):
41
41
----------
42
42
This class implements the boolean data type defined in Zarr V2 and V3.
43
43
44
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
44
+
See the [Zarr V2](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding)and [Zarr V3](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst) specification documents for details.
Copy file name to clipboardExpand all lines: src/zarr/core/dtype/npy/float.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -326,7 +326,7 @@ class Float16(BaseFloat[np.dtypes.Float16DType, np.float16]):
326
326
----------
327
327
This class implements the float16 data type defined in Zarr V2 and V3.
328
328
329
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
329
+
See the [Zarr V2](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding) and [Zarr V3](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst) specification documents for details.
330
330
"""
331
331
332
332
dtype_cls=np.dtypes.Float16DType
@@ -363,7 +363,7 @@ class Float32(BaseFloat[np.dtypes.Float32DType, np.float32]):
363
363
----------
364
364
This class implements the float32 data type defined in Zarr V2 and V3.
365
365
366
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
366
+
See the [Zarr V2](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding) and [Zarr V3](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst) specification documents for details.
367
367
"""
368
368
369
369
dtype_cls=np.dtypes.Float32DType
@@ -400,7 +400,7 @@ class Float64(BaseFloat[np.dtypes.Float64DType, np.float64]):
400
400
----------
401
401
This class implements the float64 data type defined in Zarr V2 and V3.
402
402
403
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
403
+
See the [Zarr V2](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding) and [Zarr V3](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst) specification documents for details.
Copy file name to clipboardExpand all lines: src/zarr/core/dtype/npy/int.py
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -248,7 +248,7 @@ class Int8(BaseInt[np.dtypes.Int8DType, np.int8]):
248
248
----------
249
249
This class implements the 8-bit signed integer data type defined in Zarr V2 and V3.
250
250
251
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
251
+
See the [Zarr V2](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding) and [Zarr V3](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst) specification documents for details.
252
252
"""
253
253
254
254
dtype_cls=np.dtypes.Int8DType
@@ -404,7 +404,7 @@ class UInt8(BaseInt[np.dtypes.UInt8DType, np.uint8]):
404
404
----------
405
405
This class implements the 8-bit unsigned integer data type defined in Zarr V2 and V3.
406
406
407
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
407
+
See the [Zarr V2](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding) and [Zarr V3](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst) specification documents for details.
408
408
"""
409
409
410
410
dtype_cls=np.dtypes.UInt8DType
@@ -551,7 +551,7 @@ class Int16(BaseInt[np.dtypes.Int16DType, np.int16], HasEndianness):
551
551
----------
552
552
This class implements the 16-bit signed integer data type defined in Zarr V2 and V3.
553
553
554
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
554
+
See the [Zarr V2](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding) and [Zarr V3](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst) specification documents for details.
555
555
"""
556
556
557
557
dtype_cls=np.dtypes.Int16DType
@@ -713,7 +713,7 @@ class UInt16(BaseInt[np.dtypes.UInt16DType, np.uint16], HasEndianness):
713
713
----------
714
714
This class implements the unsigned 16-bit unsigned integer data type defined in Zarr V2 and V3.
715
715
716
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
716
+
See the [Zarr V2](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding) and [Zarr V3](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst) specification documents for details.
717
717
"""
718
718
719
719
dtype_cls=np.dtypes.UInt16DType
@@ -875,7 +875,7 @@ class Int32(BaseInt[np.dtypes.Int32DType, np.int32], HasEndianness):
875
875
----------
876
876
This class implements the 32-bit signed integer data type defined in Zarr V2 and V3.
877
877
878
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
878
+
See the [Zarr V2](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding) and [Zarr V3](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst) specification documents for details.
879
879
"""
880
880
881
881
dtype_cls=np.dtypes.Int32DType
@@ -1058,7 +1058,7 @@ class UInt32(BaseInt[np.dtypes.UInt32DType, np.uint32], HasEndianness):
1058
1058
----------
1059
1059
This class implements the 32-bit unsigned integer data type defined in Zarr V2 and V3.
1060
1060
1061
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
1061
+
See the [Zarr V2](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding) and [Zarr V3](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst) specification documents for details.
1062
1062
"""
1063
1063
1064
1064
dtype_cls=np.dtypes.UInt32DType
@@ -1216,7 +1216,7 @@ class Int64(BaseInt[np.dtypes.Int64DType, np.int64], HasEndianness):
1216
1216
----------
1217
1217
This class implements the 64-bit signed integer data type defined in Zarr V2 and V3.
1218
1218
1219
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
1219
+
See the [Zarr V2](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding) and [Zarr V3](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst) specification documents for details.
1220
1220
"""
1221
1221
1222
1222
dtype_cls=np.dtypes.Int64DType
@@ -1374,7 +1374,7 @@ class UInt64(BaseInt[np.dtypes.UInt64DType, np.uint64], HasEndianness):
1374
1374
----------
1375
1375
This class implements the unsigned 64-bit integer data type defined in Zarr V2 and V3.
1376
1376
1377
-
See the `Zarr V2 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding>`__ and `Zarr V3 <https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst>`__ specification documents for details.
1377
+
See the [Zarr V2](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v2/v2.0.rst#data-type-encoding) and [Zarr V3](https://github.com/zarr-developers/zarr-specs/blob/main/docs/v3/data-types/index.rst) specification documents for details.
0 commit comments