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
In python when writing import json.encode, not only json.encode but also functions in json are reachable. This is not correctly implemented currently and the following code has unresolved references:
In python when writing
import json.encode
, not only json.encode but also functions in json are reachable. This is not correctly implemented currently and the following code has unresolved references:Here https://docs.python.org/3/reference/simple_stmts.html#the-import-statement the example shows how imports of nexted modules leads to their parent modules being imported as well, only what is bound in the local namespace is more restricted.
The text was updated successfully, but these errors were encountered: