Files
openide/python/testData/highlighting/awaitInTuple.py
Mikhail Golubev 91d49d6c87 i18n: Extract Python parsing errors, fix their capitalization and format
GitOrigin-RevId: a7374f1cb1358005b371fcfdeb743a24e04e1fbf
2020-08-17 16:32:09 +00:00

26 lines
509 B
Python

async def f51():
await<error descr="Expression expected"> </error>= 5 # fail
return (await<error descr="Expression expected">)</error> # fail
def f52():
await = 5
return (await)
async def f61():
await<error descr="Expression expected"> </error>= 5 # fail
return ("a", await<error descr="Expression expected">,</error> "b") # fail
def f62():
await = 5
return ("a", await, "b")
async def f71(x):
return (await x)
async def f72(x):
return ("a", await x, "b")