History log of /external/python/cpython3/Tools/parser/unparse.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
bf04b0698b91df3c7ceb4f712956b84614bb5c53 09-Sep-2016 Yury Selivanov <yury@magic.io> Issue #28008: Fix test_unparse
/external/python/cpython3/Tools/parser/unparse.py
f8cb8a16a344ab208fd46876c4b63604987347b8 09-Sep-2016 Yury Selivanov <yury@magic.io> Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.

Patch by Ivan Levkivskyi.
/external/python/cpython3/Tools/parser/unparse.py
d07a1cb53b3d5b3b68b92207f308b6bfb9235a33 06-Mar-2016 Berker Peksag <berker.peksag@gmail.com> Issue #26489: Add dictionary unpacking support to Tools/parser/unparse.py

Patch by Guo Ci Teo.
d66dd5ce68cbf4a33c385439d5eeb2bff4e860f1 06-Mar-2016 Berker Peksag <berker.peksag@gmail.com> Issue #26489: Add dictionary unpacking support to Tools/parser/unparse.py

Patch by Guo Ci Teo.
/external/python/cpython3/Tools/parser/unparse.py
f2c1aa1661edb3e14ff8b7b9995f93e303c8acbb 26-Jan-2016 Victor Stinner <victor.stinner@gmail.com> Add ast.Constant

Issue #26146: Add a new kind of AST node: ast.Constant. It can be used by
external AST optimizers, but the compiler does not emit directly such node.

An optimizer can replace the following AST nodes with ast.Constant:

* ast.NameConstant: None, False, True
* ast.Num: int, float, complex
* ast.Str: str
* ast.Bytes: bytes
* ast.Tuple if items are constants too: tuple
* frozenset

Update code to accept ast.Constant instead of ast.Num and/or ast.Str:

* compiler
* docstrings
* ast.literal_eval()
* Tools/parser/unparse.py
/external/python/cpython3/Tools/parser/unparse.py
608adf9c827a14795c21a14aef98b90a94eac287 20-Sep-2015 Eric V. Smith <eric@trueblade.com> Issue 25180: Fix Tools/parser/unparse.py for f-strings. Patch by Martin Panter.
/external/python/cpython3/Tools/parser/unparse.py
7544508f0245173bff5866aa1598c8f6cce1fc5f 12-May-2015 Yury Selivanov <yselivanov@sprymix.com> PEP 0492 -- Coroutines with async and await syntax. Issue #24017.
/external/python/cpython3/Tools/parser/unparse.py
025e9ebd0a0a19f50ca83af6ada0ac65be1fa2a1 06-May-2015 Benjamin Peterson <benjamin@python.org> PEP 448: additional unpacking generalizations (closes #2292)

Patch by Neil Girdhar.
/external/python/cpython3/Tools/parser/unparse.py
63c46b25d047cd1b1ac725a2b7a284fd235e56c3 10-Apr-2014 Benjamin Peterson <benjamin@python.org> teach unparse about matrix multiplication
/external/python/cpython3/Tools/parser/unparse.py
cda75be02a79686a8e634576600814271536bc1a 18-Mar-2013 Benjamin Peterson <benjamin@python.org> unify some ast.argument's attrs; change Attribute column offset (closes #16795)

Patch from Sven Brauch.
/external/python/cpython3/Tools/parser/unparse.py
442f20996dcd994d1024e5cad7f66a4595352eb2 06-Dec-2012 Benjamin Peterson <benjamin@python.org> create NameConstant AST class for None, True, and False literals (closes #16619)
/external/python/cpython3/Tools/parser/unparse.py
c20740109d59847ef3c7bfcb968e8c8fe019928a 07-Jul-2012 Florent Xicluna <florent.xicluna@gmail.com> Some cleanup in the Tools directory.
/external/python/cpython3/Tools/parser/unparse.py
fe8440aec00af5bc2e995aaad205efa2e693a364 06-May-2012 Mark Dickinson <mdickinson@enthought.com> Issue #14965: Bring Tools/parser/unparse.py up to date with the Python 3.3. Grammar.
1b2e9444fe9eeaef971d498445ebad7fce27f0b9 06-May-2012 Mark Dickinson <mdickinson@enthought.com> Issue #14965: Fix missing support for starred assignments in Tools/parser/unparse.py.
/external/python/cpython3/Tools/parser/unparse.py
4cf83f4d128bd40ebe3b6e59ced4895f554d18de 30-Dec-2010 Georg Brandl <georg@python.org> Remove some of the old demos. (Put a few somewhere else.)
/external/python/cpython3/Tools/parser/unparse.py