__builtins__
py.run()
Python code doesn't like to run without `__builtins__`, so adding them if missing seems to be a good idea. Also that's what CPython >3.10 does. See https://github.com/python/cpython/pull/24564 Resolves #3370