Files
parso/test/normalizer_issue_files/allowed_syntax_python3.5.py
2017-08-05 22:33:11 +02:00

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 ''