aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/Python-ast.c
Commit message (Expand)AuthorAge
* bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445)Serhiy Storchaka2018-09-27
* bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196)Serhiy Storchaka2018-05-31
* bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197)Serhiy Storchaka2018-05-29
* bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code ...Serhiy Storchaka2018-01-25
* bpo-31572: Get rid of _PyObject_HasAttrId() in the ASDL parser. (#3725)Serhiy Storchaka2017-11-11
* bpo-31095: fix potential crash during GC (GH-2974)INADA Naoki2017-08-24
* Fix a shadow-compatible-local warning (#2180)Yuan Chao Chou2017-08-04
* bpo-29622: Make AST constructor to accept less than enough number of position...INADA Naoki2017-02-24
* bpo-29463: Add docstring field to some AST nodes. (#46)INADA Naoki2017-02-22
* Issue #29369: Use Py_IDENTIFIER in Python-ast.cINADA Naoki2017-01-25
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-23
* Issue #24098: Fixed possible crash when AST is changed in process ofSerhiy Storchaka2016-10-07
|\
| * Issue #24098: Fixed possible crash when AST is changed in process ofSerhiy Storchaka2016-10-07
| * Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node whenVictor Stinner2015-11-06
* | Issue #28008: Implement PEP 530 -- asynchronous comprehensions.Yury Selivanov2016-09-09
* | Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-08
* | Issue #26146: remove useless codeVictor Stinner2016-01-27
* | Add ast.ConstantVictor Stinner2016-01-26
* | Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node whenVictor Stinner2015-11-06
* | Issue #24965: Implement PEP 498 "Literal String Interpolation". Documentation...Eric V. Smith2015-09-19
* | Issue #15989: Fixed some scarcely probable integer overflows.Serhiy Storchaka2015-09-06
|/
* PEP 0492 -- Coroutines with async and await syntax. Issue #24017.Yury Selivanov2015-05-11
* PEP 448: additional unpacking generalizations (closes #2292)Benjamin Peterson2015-05-05
* PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)Benjamin Peterson2014-04-09
* merge 3.3 (#20588)Benjamin Peterson2014-02-10
|\
| * don't put runtime values in array initializer for C89 compliance (closes #20588)Benjamin Peterson2014-02-10
* | Issue #4555: All exported C symbols are now prefixed with either "Py" or "_Py".Antoine Pitrou2013-10-12
* | Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object().Christian Heimes2013-07-27
|\|
| * Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object().Christian Heimes2013-07-27
* | (Merge 3.3) Parser/asdl_c.py: use Py_CLEAR()Victor Stinner2013-07-27
|\|
| * Parser/asdl_c.py: use Py_CLEAR()Victor Stinner2013-07-27
* | (Merge 3.3) According to the PEP 7, C code must "use 4-space indents"Victor Stinner2013-07-27
|\|
| * According to the PEP 7, C code must "use 4-space indents"Victor Stinner2013-07-27
* | Issue #18408: Fix Python-ast.c: handle init_types() failure (ex: MemoryError)Victor Stinner2013-07-17
* | Issue #17917: Use PyModule_AddIntMacro() instead of PyModule_AddIntConstant()Charles-Francois Natali2013-05-20
* | bump Python-ast.cBenjamin Peterson2013-03-18
* | refactor to fix refleaksBenjamin Peterson2013-03-18
* | unify some ast.argument's attrs; change Attribute column offset (closes #16795)Benjamin Peterson2013-03-18
* | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-25
* | create NameConstant AST class for None, True, and False literals (closes #16619)Benjamin Peterson2012-12-06
|/
* Issue #16546: make ast.YieldFrom argument mandatory.Mark Dickinson2012-11-25
* add gc support to the AST base type (closes #15293)Benjamin Peterson2012-07-08
* Issue #15291: Fix a memory leak where AST nodes where not properly deallocated.Antoine Pitrou2012-07-08
* use Py_ssize_t for ast sequence lengthsBenjamin Peterson2012-05-15
* Document f4d7ad6c9d6e.Martin v. Löwis2012-05-15
* Widen ASDL sequences to Py_ssize_t lengths to better match PEP 353.Martin v. Löwis2012-05-15
* free AST's dictBenjamin Peterson2012-03-14
* Try to fix compilation of Python-ast.c on Visual Studio 2008Victor Stinner2012-03-13
* give the AST class a __dict__Benjamin Peterson2012-03-12
* make YieldFrom its own distinct from Yield (closes #13780)Benjamin Peterson2012-01-14