Files
Andrey Vlasovskikh ac05b12d26 Resolve members of all imported modules in both __init__.py and submodules (PY-14454, PY-14615)
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.
2015-07-02 17:38:25 +03:00

5 lines
48 B
Python

import pkg1.m1
print(pkg1.m1)
# <ref>