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.
20 lines
312 B
20 lines
312 B
5 years ago
|
# test syntax errors using async
|
||
|
|
||
|
try:
|
||
|
exec
|
||
|
except NameError:
|
||
|
print("SKIP")
|
||
|
raise SystemExit
|
||
|
|
||
|
|
||
|
def test_syntax(code):
|
||
|
try:
|
||
|
exec(code)
|
||
|
print("no SyntaxError")
|
||
|
except SyntaxError:
|
||
|
print("SyntaxError")
|
||
|
|
||
|
|
||
|
test_syntax("async for x in (): x")
|
||
|
test_syntax("async with x: x")
|