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
When there are two modules that expose a function with the same name, and those get imported directly (using aliases), the control flow is resolved incorrectly.
When there are two modules that expose a function with the same name, and those get imported directly (using aliases), the control flow is resolved incorrectly.
Example:
module_a.py
module_b.py
test.py
This will lead to a control flow that calls the function
module_a.foo
twice instead of once for each version.The text was updated successfully, but these errors were encountered: