summaryrefslogtreecommitdiff
path: root/Python/Python-ast.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-38425: Fix ‘res’ may be used uninitialized warning (GH-16688)Dong-hee Na2019-10-101-1/+2
* bpo-38140: Make dict and weakref offsets opaque for C heap types (#16076)Eddie Elizondo2019-09-191-2/+7
* Fix leaks in Python-ast.c (#16127)Eddie Elizondo2019-09-141-1/+5
* bpo-38113: Update the Python-ast.c generator to PEP384 (gh-15957)Dino Viehland2019-09-111-1388/+2462
* bpo-38083: Minor improvements in asdl_c.py and Python-ast.c. (GH-15824)Serhiy Storchaka2019-09-101-131/+307
* bpo-37593: Swap the positions of posonlyargs and args in the constructor of a...Pablo Galindo2019-07-141-23/+23
* bpo-37253: Remove PyAST_obj2mod_ex() function (GH-14020)Victor Stinner2019-06-131-5/+0
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-301-2/+2
* bpo-37050: Remove expr_text from FormattedValue ast node, use Constant node i...Eric V. Smith2019-05-271-29/+6
* bpo-36842: Implement PEP 578 (GH-12613)Steve Dower2019-05-231-0/+4
* bpo-36878: Track extra text added to 'type: ignore' in the AST (GH-13479)Michael J. Sullivan2019-05-221-3/+30
* bpo-34616: Add PyCF_ALLOW_TOP_LEVEL_AWAIT to allow top-level await (GH-13148)Matthias Bussonnier2019-05-211-0/+2
* bpo-36817: Add f-string debugging using '='. (GH-13123)Eric V. Smith2019-05-081-6/+29
* bpo-36540: PEP 570 -- Implementation (GH-12701)Pablo Galindo2019-04-291-5/+45
* bpo-36280: Add Constant.kind field (GH-12295)Guido van Rossum2019-03-131-5/+27
* bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086)Guido van Rossum2019-03-071-0/+5
* bpo-36187: Remove NamedStore. (GH-12167)Serhiy Storchaka2019-03-051-20/+1
* bpo-35766 follow-up: Kill half-support for FunctionType in PyAST_obj2mod (#11...Guido van Rossum2019-02-011-3/+2
* bpo-35766: Merge typed_ast back into CPython (GH-11645)Guido van Rossum2019-01-311-46/+466
* bpo-35224: PEP 572 Implementation (#10497)Emily Morehouse2019-01-241-1/+110
* bpo-33416: Add end positions to Python AST (GH-11605)Ivan Levkivskyi2019-01-221-124/+454
* bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445)Serhiy Storchaka2018-09-271-308/+4
* bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196)Serhiy Storchaka2018-05-311-1/+2
* bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197)Serhiy Storchaka2018-05-291-102/+17
* bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code ...Serhiy Storchaka2018-01-251-1016/+1174
* bpo-31572: Get rid of _PyObject_HasAttrId() in the ASDL parser. (#3725)Serhiy Storchaka2017-11-111-610/+774
* bpo-31095: fix potential crash during GC (GH-2974)INADA Naoki2017-08-241-0/+2
* Fix a shadow-compatible-local warning (#2180)Yuan Chao Chou2017-08-041-165/+165
* bpo-29622: Make AST constructor to accept less than enough number of position...INADA Naoki2017-02-241-19/+17
* bpo-29463: Add docstring field to some AST nodes. (#46)INADA Naoki2017-02-221-17/+90
* Issue #29369: Use Py_IDENTIFIER in Python-ast.cINADA Naoki2017-01-251-6/+12
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-22/+11
* Issue #24098: Fixed possible crash when AST is changed in process ofSerhiy Storchaka2016-10-071-0/+220
|\
| * Issue #24098: Fixed possible crash when AST is changed in process ofSerhiy Storchaka2016-10-071-0/+216
| * Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node whenVictor Stinner2015-11-061-2/+29
* | Issue #28008: Implement PEP 530 -- asynchronous comprehensions.Yury Selivanov2016-09-091-3/+24
* | Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-081-1/+123
* | 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-2/+6
|\
| * don't put runtime values in array initializer for C89 compliance (closes #20588)Benjamin Peterson2014-02-101-2/+6
* | 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
|\ \ | |/
| * Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object().Christian Heimes2013-07-271-3/+7