Skip to content

Commit 84a04ba

Browse files
committed
Also import all extension modules in __init__.py files
1 parent 6c8bb9a commit 84a04ba

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from . import pure, subpkg1, subpkg2
1+
from . import pkg, pure, subpkg1, subpkg2
22

3-
__all__ = ["pure", "subpkg1", "subpkg2"]
3+
__all__ = ["pure", "pkg", "subpkg1", "subpkg2"]

tests/packages/importlib_editable/pkg/pkg.pyi

Whitespace-only changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from . import pure
1+
from . import pure, subpkg1
22

3-
__all__ = ["pure"]
3+
__all__ = ["pure", "subpkg1"]

tests/packages/importlib_editable/pkg/subpkg1/subpkg1.pyi

Whitespace-only changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from . import pure, subsubpkg1, subsubpkg2
1+
from . import pure, subpkg2, subsubpkg1, subsubpkg2
22

3-
__all__ = ["pure", "subsubpkg1", "subsubpkg2"]
3+
__all__ = ["pure", "subpkg2", "subsubpkg1", "subsubpkg2"]

tests/packages/importlib_editable/pkg/subpkg2/subpkg2.pyi

Whitespace-only changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from . import pure
1+
from . import pure, subsubpkg1
22

3-
__all__ = ["pure"]
3+
__all__ = ["pure", "subsubpkg1"]

tests/packages/importlib_editable/pkg/subpkg2/subsubpkg1/subsubpkg1.pyi

Whitespace-only changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from . import pure
1+
from . import pure, subsubpkg2
22

3-
__all__ = ["pure"]
3+
__all__ = ["pure", "subsubpkg2"]

tests/packages/importlib_editable/pkg/subpkg2/subsubpkg2/subsubpkg2.pyi

Whitespace-only changes.

0 commit comments

Comments
 (0)