mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-23 15:49:31 +07:00
We used to resolve members __init__.py of imported packages using only the __init__.py itself, i.e. without considering their submodules. Now we do that and we also don't filter unimported submodules because we cannot detect them reliably. They might be imported in other modules via some import chain.
5 lines
43 B
Python
5 lines
43 B
Python
from pkg1 import m1
|
|
|
|
print(m1)
|
|
# <ref>
|