You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need to differentiate between imports: from blah import foo and just a straight import blah.
Need to dig deeper into this- it appears Python treats these imports differently - if a symbol exposed in package __init__.py is same as a module in the same package, we need to know if the module or the __init__.py symbol is loaded into the namespace.
The text was updated successfully, but these errors were encountered:
We need to differentiate between imports:
from blah import foo
and just a straightimport blah
.Need to dig deeper into this- it appears Python treats these imports differently - if a symbol exposed in package
__init__.py
is same as a module in the same package, we need to know if the module or the__init__.py
symbol is loaded into the namespace.The text was updated successfully, but these errors were encountered: