summaryrefslogtreecommitdiffstats
path: root/Python/ast.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-36332: Allow compile() to handle AST objects with assignment expressions ...Pablo Galindo2019-03-181-3/+4
* bpo-36280: Add Constant.kind field (GH-12295)Guido van Rossum2019-03-131-7/+46
* bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086)Guido van Rossum2019-03-071-19/+81
* bpo-36187: Remove NamedStore. (GH-12167)Serhiy Storchaka2019-03-051-109/+90
* bpo-36052: Raise a SyntaxError when assigning a value to __debug__ with := (G...Stéphane Wirtel2019-02-211-1/+1
* bpo-36049: Fix compiler warning in Python/ast.c (GH-11949)Pablo Galindo2019-02-191-1/+1
* bpo-35766 follow-up: Add an error check to new_type_comment() (#11766)Guido van Rossum2019-02-111-0/+2
* Fix compiler warning about non initialised variable (GH-11806)Pablo Galindo2019-02-101-2/+2
* Fix compiler warnings about end_col_offset and end_lineno (GH-11735)Ivan Levkivskyi2019-02-101-5/+2
* bpo-35879: Fix type comment leaks (GH-11728)Guido van Rossum2019-02-011-3/+8
* bpo-35766: Merge typed_ast back into CPython (GH-11645)Guido van Rossum2019-01-311-58/+246
* bpo-35814: Allow same r.h.s. in annotated assignments as in normal ones (GH-1...Ivan Levkivskyi2019-01-251-1/+6
* bpo-35224: PEP 572 Implementation (#10497)Emily Morehouse2019-01-241-3/+97
* bpo-33416: Add end positions to Python AST (GH-11605)Ivan Levkivskyi2019-01-221-94/+252
* bpo-16806: Fix `lineno` and `col_offset` for multi-line string tokens (GH-10021)Anthony Sottile2019-01-131-3/+7
* bpo-35494: Improve syntax error messages for unbalanced parentheses in f-stri...Serhiy Storchaka2019-01-121-4/+27
* bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...Zackery Spytz2018-12-071-1/+6
* bpo-31241: Fix AST node position for list and generator comprehensions. (GH-1...Serhiy Storchaka2018-11-271-17/+32
* bpo-18407: ast.c uses Py_ssize_t for asdl_seq_LEN() iterator (GH-10655)Victor Stinner2018-11-221-9/+9
* bpo-35169: Improve error messages for forbidden assignments. (GH-10342)Serhiy Storchaka2018-11-201-60/+46
* bpo-34876: Change the lineno of the AST for decorated function and class. (GH...Serhiy Storchaka2018-10-301-6/+0
* bpo-32912: Replace a DeprecationWarning with a SyntaxWarning (GH-9652)Serhiy Storchaka2018-10-191-3/+3
* bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445)Serhiy Storchaka2018-09-271-54/+28
* bpo-34683: Make SyntaxError column offsets consistently 1-indexed (gh-9338)Ammar Askar2018-09-241-1/+1
* closes bpo-34641: Further restrict the LHS of keyword argument function call ...Benjamin Peterson2018-09-131-14/+41
* Make sure the line comes from the same node as the col offset. (GH-9189)Benjamin Peterson2018-09-111-3/+3
* closes bpo-31902: Fix the col_offset attribute for ast.Async* nodes to point ...guoci2018-09-111-18/+21
* bpo-34457: Python/ast.c: Add missing NULL check to alias_for_import_name(). (...Alexey Izbyshev2018-08-221-0/+2
* bpo-33691: Add _PyAST_GetDocString(). (GH-7236)Serhiy Storchaka2018-05-301-0/+20
* bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197)Serhiy Storchaka2018-05-291-63/+24
* fix error message in ast.c (#6776)Jelle Zijlstra2018-05-131-1/+1
* bpo-30465: Fix C downcast warning on Windows in ast.c (#6593)Victor Stinner2018-04-301-1/+1
* Don't hide unexpected errors in PyErr_WarnExplicitObject(). (#4585)Serhiy Storchaka2017-12-011-9/+10
* bpo-32023: Disallow genexprs without parenthesis in class definitions. (#4400)Serhiy Storchaka2017-11-151-5/+10
* bpo-32012: Disallow trailing comma after genexpr without parenthesis. (#4382)Serhiy Storchaka2017-11-151-10/+9
* Fix miscellaneous typos (#4275)luzpaz2017-11-051-1/+1
* bpo-31825: Fixed OverflowError in the 'unicode-escape' codec (#4058)Serhiy Storchaka2017-10-201-1/+1
* bpo-30406: Make async and await proper keywords (#1669)Jelle Zijlstra2017-10-061-40/+35
* bpo-31592: Fix an assertion failure in Python parser in case of a bad unicode...Oren Milman2017-09-301-12/+16
* bpo-31338 (#3374)Barry Warsaw2017-09-151-4/+2
* bpo-30465: Fix lineno and col_offset in fstring AST nodes (#1800)Łukasz Langa2017-09-071-5/+67
* bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (...Stefan Krah2017-08-211-0/+3
* bpo-30682: Removed a too-strict assertion that failed for certain f-strings. ...ericvsmith2017-06-161-2/+2
* bpo-30529: Fix errors for invalid whitespaces in f-string subexpressions. (#1...Serhiy Storchaka2017-06-081-24/+7
* bpo-29104: Fixed parsing backslashes in f-strings. (#490)Serhiy Storchaka2017-05-251-21/+32
* bpo-29865: Use PyXXX_GET_SIZE macros rather than Py_SIZE for concrete types. ...Serhiy Storchaka2017-03-211-1/+1
* bpo-29463: Add docstring field to some AST nodes. (#46)INADA Naoki2017-02-221-26/+63
* Issue #18896: Python function can now have more than 255 parameters.Serhiy Storchaka2016-12-161-5/+0
* Issue #28739: f-string expressions no longer accepted as docstrings andSerhiy Storchaka2016-12-111-6/+5
|\
| * Issue #28739: f-string expressions no longer accepted as docstrings andSerhiy Storchaka2016-12-111-6/+5