index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
ast.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157)
Victor Stinner
2020-03-25
1
-6/+3
*
bpo-40000: Improve error messages when validating invalid ast.Constant nodes ...
Batuhan Taşkaya
2020-03-19
1
-3/+5
*
bpo-39988: Remove ast.AugLoad and ast.AugStore node classes. (GH-19038)
Serhiy Storchaka
2020-03-17
1
-12/+1
*
bpo-39969: Remove ast.Param node class as is no longer used (GH-19020)
Batuhan Taşkaya
2020-03-15
1
-2/+0
*
bpo-34822: Simplify AST for subscription. (GH-9605)
Serhiy Storchaka
2020-03-10
1
-67/+21
*
bpo-39639: Remove the AST "Suite" node and associated code (GH-18513)
Batuhan Taşkaya
2020-03-04
1
-3/+0
*
bpo-39702: Relax grammar restrictions on decorators (PEP 614) (GH-18570)
Brandt Bucher
2020-03-03
1
-68/+4
*
bpo-39474: Fix AST pos for expressions like (a)(b), (a)[b] and (a).b. (GH-18477)
Serhiy Storchaka
2020-02-12
1
-18/+18
*
bpo-39579: Fix Attribute end_col_offset to point at the current node (GH-18405)
Lysandros Nikolaou
2020-02-07
1
-2/+3
*
bpo-39235: Fix end location for genexp in call args (GH-17925)
Guido van Rossum
2020-01-09
1
-8/+8
*
bpo-39176: Improve error message for 'named assignment' (GH-17777)
Ned Batchelder
2020-01-01
1
-1/+1
*
bpo-39080: Starred Expression's column offset fix when inside a CALL (GH-17645)
Lysandros Nikolaou
2019-12-18
1
-1/+1
*
The comment in ast_for_namedexpr shouldn't include if_stmt (GH-17586)
Guido van Rossum
2019-12-15
1
-3/+1
*
Fix elif start column offset when there is an else following (GH-17596)
Lysandros Nikolaou
2019-12-14
1
-2/+2
*
bpo-39031: Include elif keyword when producing lineno/col-offset info for if_...
Lysandros Nikolaou
2019-12-12
1
-2/+2
*
bpo-38535: Fix positions for AST nodes for calls without arguments in decorat...
Serhiy Storchaka
2019-10-26
1
-2/+4
*
Cut disused recode_encoding logic in _PyBytes_DecodeEscape. (GH-16013)
Greg Price
2019-09-12
1
-1/+1
*
bpo-38138: Fix memory leak introduced by interned strings (GH-16053)
Dino Viehland
2019-09-12
1
-0/+1
*
bpo-38113: Update Python/ast.c to PEP-384 (GH-15975)
Dino Viehland
2019-09-11
1
-4/+3
*
Fix typos mostly in comments, docs and test names (GH-15209)
Min ho Kim
2019-08-30
1
-1/+1
*
bpo-32912: Revert SyntaxWarning on invalid escape sequences. (GH-15195)
Gregory P. Smith
2019-08-10
1
-3/+3
*
Fix typos in comments, docs and test names (#15018)
Min ho Kim
2019-07-30
1
-1/+1
*
bpo-37593: Swap the positions of posonlyargs and args in the constructor of a...
Pablo Galindo
2019-07-14
1
-1/+1
*
bpo-18374: fix wrong col_offset of some ast.BinOp instances (GH-14607)
Carl Friedrich Bolz-Tereick
2019-07-08
1
-1/+1
*
remove dead code (GH-14104)
David Carlier
2019-06-18
1
-3/+0
*
bpo-37253: Add _PyCompilerFlags_INIT macro (GH-14018)
Victor Stinner
2019-06-13
1
-2/+1
*
bpo-35814: Allow unpacking in r.h.s of annotated assignment expressions (GH-1...
Pablo Galindo
2019-06-03
1
-1/+1
*
bpo-37112: Allow compile to work on AST with positional only arguments with d...
Pablo Galindo
2019-05-31
1
-1/+1
*
bpo-37070: Cleanup fstring debug handling (GH-13607)
Eric V. Smith
2019-05-29
1
-27/+18
*
bpo-37072: Fix crash in PyAST_FromNodeObject() when flags is NULL (#13634)
Guido van Rossum
2019-05-28
1
-1/+1
*
bpo-37050: Remove expr_text from FormattedValue ast node, use Constant node i...
Eric V. Smith
2019-05-27
1
-44/+46
*
bpo-36878: Track extra text added to 'type: ignore' in the AST (GH-13479)
Michael J. Sullivan
2019-05-22
1
-1/+4
*
Fix couple of dead code paths (GH-7418)
David Carlier
2019-05-17
1
-3/+0
*
bpo-36817: Do not decrement reference for expr_text on fstring = parsing fail...
Pablo Galindo
2019-05-12
1
-1/+0
*
bpo-36817: Fix reference leak for expr_text in f-string = parsing (GH-13249)
Pablo Galindo
2019-05-11
1
-2/+7
*
bpo-36817: Add f-string debugging using '='. (GH-13123)
Eric V. Smith
2019-05-08
1
-29/+83
*
bpo-36540: PEP 570 -- Implementation (GH-12701)
Pablo Galindo
2019-04-29
1
-18/+82
*
bpo-36495: Fix two out-of-bounds array reads (GH-12641)
Brad Larsen
2019-04-01
1
-2/+2
*
bpo-36332: Allow compile() to handle AST objects with assignment expressions ...
Pablo Galindo
2019-03-18
1
-3/+4
*
bpo-36280: Add Constant.kind field (GH-12295)
Guido van Rossum
2019-03-13
1
-7/+46
*
bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086)
Guido van Rossum
2019-03-07
1
-19/+81
*
bpo-36187: Remove NamedStore. (GH-12167)
Serhiy Storchaka
2019-03-05
1
-109/+90
*
bpo-36052: Raise a SyntaxError when assigning a value to __debug__ with := (G...
Stéphane Wirtel
2019-02-21
1
-1/+1
*
bpo-36049: Fix compiler warning in Python/ast.c (GH-11949)
Pablo Galindo
2019-02-19
1
-1/+1
*
bpo-35766 follow-up: Add an error check to new_type_comment() (#11766)
Guido van Rossum
2019-02-11
1
-0/+2
*
Fix compiler warning about non initialised variable (GH-11806)
Pablo Galindo
2019-02-10
1
-2/+2
*
Fix compiler warnings about end_col_offset and end_lineno (GH-11735)
Ivan Levkivskyi
2019-02-10
1
-5/+2
*
bpo-35879: Fix type comment leaks (GH-11728)
Guido van Rossum
2019-02-01
1
-3/+8
*
bpo-35766: Merge typed_ast back into CPython (GH-11645)
Guido van Rossum
2019-01-31
1
-58/+246
*
bpo-35814: Allow same r.h.s. in annotated assignments as in normal ones (GH-1...
Ivan Levkivskyi
2019-01-25
1
-1/+6
[next]