File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
tests/packages/importlib_editable/pkg Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 33
44from .pmod_b import square as psquare
55from .emod_b import square as esquare
6+
7+ # Level one import cousin
8+ from .. import sub_b
9+ from ..sub_b .pmod_c import square as psquare_c
10+ from ..sub_b .emod_c import square as esquare_c
11+
12+ # Level one import distant cousin
13+ from ..sub_b import sub_c
14+ from ..sub_b .sub_c .pmod_d import square as psquare_d
15+ from ..sub_b .sub_c .emod_d import square as esquare_d
Original file line number Diff line number Diff line change 33
44from .pmod_d import square as psquare_d
55from .emod_d import square as esquare_d
6+
7+ # Level one import cousin
8+ from .. import sub_d
9+ from ..sub_d .pmod_e import square as psquare_e
10+ from ..sub_d .emod_e import square as esquare_e
You can’t perform that action at this time.
0 commit comments