PythonExtra/tests/basics/fun_globals.py
Damien George 268ec1e3eb tests/basics: Add tests for __name__ and __globals__ attrs on closures.
Signed-off-by: Damien George <damien@micropython.org>
2022-06-24 23:55:13 +10:00

37 lines
543 B
Python

# test the __globals__ attribute of a function
def foo():
pass
if not hasattr(foo, "__globals__"):
print("SKIP")
raise SystemExit
print(type(foo.__globals__))
print(foo.__globals__ is globals())
foo.__globals__["bar"] = 123
print(bar)
try:
foo.__globals__ = None
except AttributeError:
print("AttributeError")
# test closures have the __globals__ attribute
def outer():
x = 1
def inner():
return x
return inner
print(outer.__globals__ is globals())
print(outer().__globals__ is globals())