File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change
1
+ """
2
+ Convenience helpers.
3
+
4
+ .. warning::
5
+
6
+ This sub-module is deprecated. All functions here are defined
7
+ in the top level zarr namespace instead.
8
+ """
9
+
1
10
import warnings
2
11
3
12
from zarr .api .synchronous import (
29
38
]
30
39
31
40
warnings .warn (
32
- "zarr.convenience is deprecated, use zarr.api.synchronous" ,
41
+ "zarr.convenience is deprecated. "
42
+ "Import these functions from the top level zarr. namespace instead." ,
33
43
DeprecationWarning ,
34
44
stacklevel = 2 ,
35
45
)
Original file line number Diff line number Diff line change
1
+ """
2
+ Helpers for creating arrays.
3
+
4
+ .. warning::
5
+
6
+ This sub-module is deprecated. All functions here are defined
7
+ in the top level zarr namespace instead.
8
+ """
9
+
1
10
import warnings
2
11
3
12
from zarr .api .synchronous import (
31
40
]
32
41
33
42
warnings .warn (
34
- "zarr.creation is deprecated, use zarr.api.synchronous" ,
43
+ "zarr.creation is deprecated. "
44
+ "Import these functions from the top level zarr. namespace instead." ,
35
45
DeprecationWarning ,
36
46
stacklevel = 2 ,
37
47
)
You can’t perform that action at this time.
0 commit comments