mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +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
48 B
Python
5 lines
48 B
Python
import pkg1.m1
|
|
|
|
print(pkg1.m1)
|
|
# <ref>
|