You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
337 B
22 lines
337 B
4 years ago
|
# 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")
|