summaryrefslogtreecommitdiffstats
path: root/Python/ast.c
Commit message (Expand)AuthorAgeFilesLines
* [3.8] gh-95778: CVE-2020-10735: Prevent DoS by very large int() (#96503)Gregory P. Smith2022-09-051-1/+18
* [3.8] bpo-35975: Only use cf_feature_version if PyCF_ONLY_AST in cf_flags (#2...Guido van Rossum2020-06-281-1/+2
* [3.8] bpo-41132: Use pymalloc allocator in the f-string parser (GH-21173) (GH...Lysandros Nikolaou2020-06-271-7/+7
* bpo-40870: Invalidate usage of some constants with ast.Name (GH-20649)Miss Islington (bot)2020-06-061-0/+22
* bpo-40614: Respect feature version for f-string debug expressions (GH-20196) ...Shantanu2020-06-061-0/+6
* bpo-39474: Fix AST pos for expressions like (a)(b), (a)[b] and (a).b. (GH-18477)Miss Islington (bot)2020-02-121-18/+18
* [3.8] bpo-39579: Fix Attribute end_col_offset to point at the current node (G...Lysandros Nikolaou2020-02-081-2/+3
* bpo-39235: Fix end location for genexp in call args (GH-17925)Miss Islington (bot)2020-01-091-8/+8
* bpo-39176: Improve error message for 'named assignment' (GH-17777) (GH-17778)Miss Islington (bot)2020-01-011-1/+1
* [3.8] bpo-39080: Starred Expression's column offset fix when inside a CALL (G...Pablo Galindo2019-12-181-1/+1
* The comment in ast_for_namedexpr shouldn't include if_stmt (GH-17586)Miss Islington (bot)2019-12-151-3/+1
* Fix elif start column offset when there is an else following (GH-17596) (GH-1...Miss Islington (bot)2019-12-141-2/+2
* bpo-39031: Include elif keyword when producing lineno/col-offset info for if_...Miss Islington (bot)2019-12-131-2/+2
* bpo-38535: Fix positions for AST nodes for calls without arguments in decorat...Miss Skeleton (bot)2019-10-261-2/+4
* Fix typos mostly in comments, docs and test names (GH-15209)Miss Islington (bot)2019-08-301-1/+1
* [3.8] bpo-32912: Revert SyntaxWarning on invalid escape sequences (GH-15142)Serhiy Storchaka2019-08-091-3/+3
* bpo-37593: Swap the positions of posonlyargs and args in the constructor of a...Miss Islington (bot)2019-07-141-1/+1
* bpo-18374: fix wrong col_offset of some ast.BinOp instances (GH-14607)Miss Islington (bot)2019-07-081-1/+1
* bpo-37253: Add _PyCompilerFlags_INIT macro (GH-14018)Miss Islington (bot)2019-06-131-2/+1
* bpo-35814: Allow unpacking in r.h.s of annotated assignment expressions (GH-1...Pablo Galindo2019-06-031-1/+1
* bpo-37112: Allow compile to work on AST with positional only arguments with d...Pablo Galindo2019-05-311-1/+1
* bpo-37070: Cleanup fstring debug handling (GH-13607)Eric V. Smith2019-05-291-27/+18
* bpo-37072: Fix crash in PyAST_FromNodeObject() when flags is NULL (#13634)Guido van Rossum2019-05-281-1/+1
* bpo-37050: Remove expr_text from FormattedValue ast node, use Constant node i...Eric V. Smith2019-05-271-44/+46
* bpo-36878: Track extra text added to 'type: ignore' in the AST (GH-13479)Michael J. Sullivan2019-05-221-1/+4
* Fix couple of dead code paths (GH-7418)David Carlier2019-05-171-3/+0
* bpo-36817: Do not decrement reference for expr_text on fstring = parsing fail...Pablo Galindo2019-05-121-1/+0
* bpo-36817: Fix reference leak for expr_text in f-string = parsing (GH-13249)Pablo Galindo2019-05-111-2/+7
* bpo-36817: Add f-string debugging using '='. (GH-13123)Eric V. Smith2019-05-081-29/+83
* bpo-36540: PEP 570 -- Implementation (GH-12701)Pablo Galindo2019-04-291-18/+82
* bpo-36495: Fix two out-of-bounds array reads (GH-12641)Brad Larsen2019-04-011-2/+2
* 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