mirror of
https://github.com/davidhalter/parso.git
synced 2025-12-06 21:04:29 +08:00
24 lines
299 B
Python
24 lines
299 B
Python
"""
|
|
Mostly allowed syntax in Python 3.5.
|
|
"""
|
|
|
|
|
|
async def foo():
|
|
await bar()
|
|
#: E901
|
|
yield from []
|
|
return
|
|
#: E901
|
|
return ''
|
|
|
|
|
|
# With decorator it's a different statement.
|
|
@bla
|
|
async def foo():
|
|
await bar()
|
|
#: E901
|
|
yield from []
|
|
return
|
|
#: E901
|
|
return ''
|