Add CHANGELOG
This commit is contained in:
parent
46c0a11ffa
commit
ce021a056f
|
@ -0,0 +1,2 @@
|
||||||
|
Fixed but that fake intermediate modules generated by ``--import-mode=importlib`` would not include the
|
||||||
|
child modules as attributes of the parent modules.
|
|
@ -602,5 +602,5 @@ class TestImportLibMode:
|
||||||
modules = {"xxx.tests.foo": ModuleType("xxx.tests.foo")}
|
modules = {"xxx.tests.foo": ModuleType("xxx.tests.foo")}
|
||||||
insert_missing_modules(modules, "xxx.tests.foo")
|
insert_missing_modules(modules, "xxx.tests.foo")
|
||||||
assert sorted(modules) == ["xxx", "xxx.tests", "xxx.tests.foo"]
|
assert sorted(modules) == ["xxx", "xxx.tests", "xxx.tests.foo"]
|
||||||
assert modules["xxx"].tests == modules["xxx.tests"]
|
assert modules["xxx"].tests is modules["xxx.tests"]
|
||||||
assert modules["xxx.tests"].foo == modules["xxx.tests.foo"]
|
assert modules["xxx.tests"].foo is modules["xxx.tests.foo"]
|
||||||
|
|
Loading…
Reference in New Issue