summaryrefslogtreecommitdiff
path: root/Python/ast.c
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-9566: Fix compiler warnings on Windows (GH-12920)Victor Stinner2019-04-231-1/+1
* bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...Zackery Spytz2018-12-071-1/+6
* Make sure the line comes from the same node as the col offset. (GH-9189)Miss Islington (bot)2018-09-111-3/+3
* closes bpo-31902: Fix the col_offset attribute for ast.Async* nodes to point ...Miss Islington (bot)2018-09-111-18/+21
* bpo-34457: Python/ast.c: Add missing NULL check to alias_for_import_name(). (...Miss Islington (bot)2018-08-221-0/+2
* bpo-32911: Revert bpo-29463. (GH-7121)Serhiy Storchaka2018-05-291-63/+24
* 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-051-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-141-4/+2
* bpo-30465: Fix lineno and col_offset in fstring AST nodes (#1800)Ɓukasz Langa2017-09-061-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
* | Issue #12844: More than 255 arguments can now be passed to a function.Serhiy Storchaka2016-11-281-5/+0
|/
* Issue #28715: Added error checks for PyUnicode_AsUTF8().Serhiy Storchaka2016-11-201-3/+5
|\
| * Issue #28715: Added error checks for PyUnicode_AsUTF8().Serhiy Storchaka2016-11-201-3/+5
* | Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-4/+4
|\ \ | |/
| * Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-2/+2
* | Fix warn_invalid_escape_sequence()Victor Stinner2016-11-151-1/+7
* | Issue #26182: Fix ia refleak in code that raises DeprecationWarning.Yury Selivanov2016-11-081-3/+5
* | Fixed issue #28633: segfault when concatenating bytes literal and f-string.Eric V. Smith2016-11-071-4/+5
* | Issue 28128: Print out better error/warning messages for invalid string escap...Eric V. Smith2016-10-311-5/+61
* | delete dead codeBenjamin Peterson2016-09-181-3/+0
* | Issue #26182: Raise DeprecationWarning for improper use of async/await keywordsYury Selivanov2016-09-151-0/+20
* | Make an f-string error message more exact and consistent.Eric V. Smith2016-09-111-1/+1
* | just start with an int rather than castingBenjamin Peterson2016-09-091-2/+2
* | Issue 27948: Allow backslashes in the literal string portion of f-strings, bu...Eric V. Smith2016-09-091-273/+211
* | Issue #26331: Implement the parsing part of PEP 515.Brett Cannon2016-09-091-1/+26
* | Issue #28008: Implement PEP 530 -- asynchronous comprehensions.Yury Selivanov2016-09-091-11/+24
* | Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-081-2/+84
* | replace PY_SIZE_MAX with SIZE_MAXBenjamin Peterson2016-09-071-1/+1
* | Closes issue 27921: Disallow backslashes anywhere in f-strings. This is a tem...Eric V. Smith2016-09-031-0/+10
* | Merge spelling and grammar fixes from 3.5Martin Panter2016-08-051-1/+1
|\ \ | |/
| * Fix spelling and grammar in documentation and code commentsMartin Panter2016-08-041-1/+1
* | Issue #27352: Correct the validation of the ImportFrom AST node and simplifySerhiy Storchaka2016-06-271-2/+2
* | Issue #23275: Allow () = iterable assignment syntaxBerker Peksag2016-05-181-7/+2
* | remove unused c_encoding struct memberBenjamin Peterson2016-02-251-17/+4
* | rewrite parsestr() so it's comprehensible; remove dead codeBenjamin Peterson2016-02-251-24/+12
* | c_encoding can never be NULL, which allows some code simplificationBenjamin Peterson2016-02-251-47/+43