summaryrefslogtreecommitdiff
path: root/Python/Python-ast.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #26146: remove useless codeVictor Stinner2016-01-271-7/+0
* Add ast.ConstantVictor Stinner2016-01-261-0/+79
* Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node whenVictor Stinner2015-11-061-2/+29
* Issue #24965: Implement PEP 498 "Literal String Interpolation". Documentation...Eric V. Smith2015-09-191-0/+165
* Issue #15989: Fixed some scarcely probable integer overflows.Serhiy Storchaka2015-09-061-1/+1
* PEP 0492 -- Coroutines with async and await syntax. Issue #24017.Yury Selivanov2015-05-111-0/+473
* PEP 448: additional unpacking generalizations (closes #2292)Benjamin Peterson2015-05-051-93/+12
* PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)Benjamin Peterson2014-04-091-3/+21
* merge 3.3 (#20588)Benjamin Peterson2014-02-101-153/+221
|\
| * Issue #4555: All exported C symbols are now prefixed with either "Py" or "_Py".Antoine Pitrou2013-10-121-48/+48
| * Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object().Christian Heimes2013-07-271-3/+7
| |\
| * \ (Merge 3.3) Parser/asdl_c.py: use Py_CLEAR()Victor Stinner2013-07-271-104/+172
| |\ \
| | * \ (Merge 3.3) According to the PEP 7, C code must "use 4-space indents"Victor Stinner2013-07-271-106/+173
| | |\ \
| | | * | Issue #18408: Fix Python-ast.c: handle init_types() failure (ex: MemoryError)Victor Stinner2013-07-171-3/+6
| | | * | Issue #17917: Use PyModule_AddIntMacro() instead of PyModule_AddIntConstant()Charles-Francois Natali2013-05-201-1/+1
| | | * | bump Python-ast.cBenjamin Peterson2013-03-181-1/+2
| | | * | refactor to fix refleaksBenjamin Peterson2013-03-181-22/+34
| | | * | unify some ast.argument's attrs; change Attribute column offset (closes #16795)Benjamin Peterson2013-03-181-102/+81
| | | * | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-1/+0
| | | * | create NameConstant AST class for None, True, and False literals (closes #16619)Benjamin Peterson2012-12-061-0/+73
* | | | | don't put runtime values in array initializer for C89 compliance (closes #20588)Benjamin Peterson2014-02-101-2/+6
| |_|_|/ |/| | |
* | | | Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object().Christian Heimes2013-07-271-3/+7
|/ / /
* | | Parser/asdl_c.py: use Py_CLEAR()Victor Stinner2013-07-271-268/+134
|/ /
* | According to the PEP 7, C code must "use 4-space indents"Victor Stinner2013-07-271-5824/+5779
|/
* Issue #16546: make ast.YieldFrom argument mandatory.Mark Dickinson2012-11-251-1/+7
* add gc support to the AST base type (closes #15293)Benjamin Peterson2012-07-081-4/+17
* Issue #15291: Fix a memory leak where AST nodes where not properly deallocated.Antoine Pitrou2012-07-081-0/+1
* use Py_ssize_t for ast sequence lengthsBenjamin Peterson2012-05-151-2/+2
* Document f4d7ad6c9d6e.Martin v. L?wis2012-05-151-2/+2
* Widen ASDL sequences to Py_ssize_t lengths to better match PEP 353.Martin v. L?wis2012-05-151-2/+2
* free AST's dictBenjamin Peterson2012-03-141-1/+7
* Try to fix compilation of Python-ast.c on Visual Studio 2008Victor Stinner2012-03-131-1/+1
* give the AST class a __dict__Benjamin Peterson2012-03-121-3/+15
* make YieldFrom its own distinct from Yield (closes #13780)Benjamin Peterson2012-01-141-15/+47
* Issue #13645: pyc files now contain the size of the corresponding sourceAntoine Pitrou2012-01-131-1/+1
* Implement PEP 380 - 'yield from' (closes #11682)Nick Coghlan2012-01-131-3/+24
* Merge branch 3.2Amaury Forgeot d'Arc2011-11-221-5/+1
|\
| * Issue #13436: commit regenerated Python-ast.cAmaury Forgeot d'Arc2011-11-221-5/+1
| * accept bytes for the AST 'string' typeBenjamin Peterson2011-08-311-1/+1
* | Port SetAttrString/HasAttrString to SetAttrId/GetAttrId.Martin v. Löwis2011-10-141-134/+135
* | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-65/+65
* | Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-101-268/+333
* | Merge 3.2Éric Araujo2011-09-021-156/+166
|\ \
| * | add a asdl bytes type, so Bytes.s be properly typecheckedBenjamin Peterson2011-08-091-4/+14
| * | merge 3.2Benjamin Peterson2011-07-221-152/+152
| |\ \ | | |/ | |/|
| | * merge 3.2Benjamin Peterson2011-07-221-2/+19
| | |\
| | * | remove ast.__version__ (closes #12273)Benjamin Peterson2011-07-151-11/+0
| | * | bump ast versionBenjamin Peterson2011-05-291-2/+2
| | * | unify TryExcept and TryFinally (closes #12199)Benjamin Peterson2011-05-291-101/+31
| | * | bump ast versionBenjamin Peterson2011-05-271-2/+2