Open
Description
Related
Reproduction
# foo.py
globals()["bar"] = 123
# main.py
import foo
print(foo.bar)
You will get a AttributeError: bar
Caused by
pyth-on-line/src/python/common/reactivity/hmr/core.py
Lines 31 to 44 in 8babf49
Not reading from the proxied namespace
Discussion
- We can proxy
__getattr__
too here, but writing togloabls()
won't cause reactions. If we decided to use this approach, we can inform users about this behavior in the docs. - We can force
globals()
to return the proxy itself by patching theglobals
key in the namespace or in the__builtins__
key, and patch any function's byFunctionType(func.__code__, { ... })
. We may also need to patch classes too, but I'm not sure know how to do that.