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.
29 lines
432 B
29 lines
432 B
# test compile builtin
|
|
|
|
def have_compile():
|
|
try:
|
|
compile
|
|
return True
|
|
except NameError:
|
|
return False
|
|
|
|
# global variable for compiled code to access
|
|
x = 1
|
|
|
|
def test():
|
|
c = compile("print(x)", "file", "exec")
|
|
|
|
try:
|
|
exec(c)
|
|
except NameError:
|
|
print("NameError")
|
|
|
|
exec(c)
|
|
|
|
exec(c, {"x":2})
|
|
exec(c, {}, {"x":3})
|
|
|
|
if have_compile():
|
|
test()
|
|
else:
|
|
print("SKIP")
|
|
|