cpython/Lib/lib2to3/pgen2
Yury Selivanov 8fb307cd65 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 13:33:45 +03:00
..
__init__.py
conv.py Replace IOError with OSError (#16715) 2012-12-25 16:47:37 +02:00
driver.py Replace IOError with OSError (#16715) 2012-12-25 16:47:37 +02:00
grammar.py add matrix multiplication operator support to 2to3 2014-04-10 00:12:47 -04:00
literals.py
parse.py Merged revisions 67428 via svnmerge from 2008-11-28 23:01:28 +00:00
pgen.py Merged revisions 76063,76068 via svnmerge from 2009-11-02 18:33:36 +00:00
token.py PEP 0492 -- Coroutines with async and await syntax. Issue #24017. 2015-05-11 22:57:16 -04:00
tokenize.py Issue #24619: New approach for tokenizing async/await. 2015-07-22 13:33:45 +03:00