We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12f6012 commit 7215121Copy full SHA for 7215121
docs/conf.py
@@ -71,7 +71,7 @@ def skip_submodules(
71
) -> bool:
72
# Skip documenting zarr.codecs submodules
73
# codecs are documented in the main zarr.codecs namespace
74
- if what == "module" and name.startswith("zarr.codecs."):
+ if what == "module" and name.startswith("zarr.codecs.") or name.startswith("zarr.core"):
75
skip = True
76
return skip
77
src/zarr/core/__init__.py
@@ -1,3 +1,8 @@
1
+"""
2
+The ``zarr.core`` module is considered private API and should not be imported
3
+directly by 3rd-party code.
4
5
+
6
from __future__ import annotations
7
8
from zarr.core.buffer import Buffer, NDBuffer # noqa: F401
0 commit comments