This website requires JavaScript.
Explore
Help
Sign In
traverseda
/
cpython
Watch
1
Star
0
Fork
You've already forked cpython
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
81a5092285
cpython
/
Lib
/
test
/
badsyntax_async2.py
3 lines
45 B
Python
Raw
Normal View
History
Unescape
Escape
Issue #24619: More tests; fix nits in compiler.c
2015-07-22 08:48:57 -03:00
async
def
foo
(
a
=
await
something
(
)
)
:
Issue #24619: New approach for tokenizing async/await. This commit fixes how one-line async-defs and defs are tracked by tokenizer. It allows to correctly parse invalid code such as: >>> async def f(): ... def g(): pass ... async = 10 and valid code such as: >>> async def f(): ... async def g(): pass ... await z As a consequence, is is now possible to have one-line 'async def foo(): await ..' functions: >>> async def foo(): return await bar()
2015-07-22 07:33:45 -03:00
pass