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
/
Parser
/
Python.asdl
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-131421: fix ASDL grammar for `Dict` to have an `expr?*` keys field (#131419)
Samuel
2025-05-04
1
-1/+1
*
gh-132661: Implement PEP 750 (#132662)
Lysandros Nikolaou
2025-04-30
1
-0/+2
*
gh-116126: Implement PEP 696 (#116129)
Jelle Zijlstra
2024-05-03
1
-3/+3
*
gh-106145: Make `end_{lineno,col_offset}` required on `type_param` nodes (#10...
Nikita Sobolev
2023-06-30
1
-1/+1
*
gh-104799: Move location of type_params AST fields (#104828)
Jelle Zijlstra
2023-05-26
1
-6/+6
*
gh-104656: Rename typeparams AST node to type_params (#104657)
Jelle Zijlstra
2023-05-22
1
-8/+8
*
gh-103763: Implement PEP 695 (#103764)
Jelle Zijlstra
2023-05-16
1
-2/+9
*
bpo-46289: Make conversion of FormattedValue not optional on ASDL (GH-30467)
Batuhan Taskaya
2022-01-07
1
-1/+1
*
bpo-45292: [PEP-654] add except* (GH-29581)
Irit Katriel
2021-12-14
1
-0/+1
*
bpo-43892: Make match patterns explicit in the AST (GH-25585)
Nick Coghlan
2021-04-29
1
-5/+15
*
bpo-43798: Add source location attributes to alias (GH-25324)
Matthew Suozzo
2021-04-10
1
-0/+1
*
bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)
Brandt Bucher
2021-02-26
1
-0/+8
*
bpo-40528: Improve and clear several aspects of the ASDL definition code for ...
Batuhan Taskaya
2020-05-06
1
-2/+2
*
bpo-40141: Add line and column information to ast.keyword nodes (GH-19283)
Pablo Galindo
2020-04-01
1
-0/+1
*
bpo-39988: Remove ast.AugLoad and ast.AugStore node classes. (GH-19038)
Serhiy Storchaka
2020-03-17
1
-1/+1
*
bpo-39969: Remove ast.Param node class as is no longer used (GH-19020)
Batuhan Taşkaya
2020-03-15
1
-1/+1
*
bpo-34822: Simplify AST for subscription. (GH-9605)
Serhiy Storchaka
2020-03-10
1
-5/+4
*
bpo-39639: Remove the AST "Suite" node and associated code (GH-18513)
Batuhan Taşkaya
2020-03-04
1
-5/+1
*
bpo-37593: Swap the positions of posonlyargs and args in the constructor of a...
Pablo Galindo
2019-07-14
1
-1/+1
*
bpo-37050: Remove expr_text from FormattedValue ast node, use Constant node i...
Eric V. Smith
2019-05-27
1
-1/+1
*
bpo-36878: Track extra text added to 'type: ignore' in the AST (GH-13479)
Michael J. Sullivan
2019-05-22
1
-2/+1
*
bpo-36817: Add f-string debugging using '='. (GH-13123)
Eric V. Smith
2019-05-08
1
-1/+1
*
bpo-36540: PEP 570 -- Implementation (GH-12701)
Pablo Galindo
2019-04-29
1
-2/+2
*
bpo-36280: Add Constant.kind field (GH-12295)
Guido van Rossum
2019-03-13
1
-1/+1
*
bpo-36187: Remove NamedStore. (GH-12167)
Serhiy Storchaka
2019-03-05
1
-1/+1
*
bpo-35766: Merge typed_ast back into CPython (GH-11645)
Guido van Rossum
2019-01-31
1
-9/+14
*
bpo-35224: PEP 572 Implementation (#10497)
Emily Morehouse
2019-01-24
1
-1/+2
*
bpo-33416: Add end positions to Python AST (GH-11605)
Ivan Levkivskyi
2019-01-22
1
-4/+4
*
bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445)
Serhiy Storchaka
2018-09-27
1
-10/+2
*
bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197)
Serhiy Storchaka
2018-05-29
1
-7/+4
*
bpo-29463: Add docstring field to some AST nodes. (#46)
INADA Naoki
2017-02-22
1
-4/+7
*
Issue #28008: Implement PEP 530 -- asynchronous comprehensions.
Yury Selivanov
2016-09-09
1
-1/+1
*
Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.
Yury Selivanov
2016-09-09
1
-0/+2
*
Add ast.Constant
Victor Stinner
2016-01-25
1
-1/+6
*
Issue #24965: Implement PEP 498 "Literal String Interpolation". Documentation...
Eric V. Smith
2015-09-19
1
-0/+2
*
PEP 0492 -- Coroutines with async and await syntax. Issue #24017.
Yury Selivanov
2015-05-12
1
-1/+7
*
PEP 448: additional unpacking generalizations (closes #2292)
Benjamin Peterson
2015-05-06
1
-6/+3
*
Removed trailing whitespaces in miscalenous files.
Serhiy Storchaka
2015-04-03
1
-8/+8
*
PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)
Benjamin Peterson
2014-04-10
1
-1/+1
*
unify some ast.argument's attrs; change Attribute column offset (closes #16795)
Benjamin Peterson
2013-03-18
1
-4/+4
*
create NameConstant AST class for None, True, and False literals (closes #16619)
Benjamin Peterson
2012-12-06
1
-2/+2
*
Issue #16546: make ast.YieldFrom argument mandatory.
Mark Dickinson
2012-11-25
1
-1/+1
*
murder tabs
Benjamin Peterson
2012-01-16
1
-98/+98
*
make YieldFrom its own distinct from Yield (closes #13780)
Benjamin Peterson
2012-01-14
1
-1/+2
*
Implement PEP 380 - 'yield from' (closes #11682)
Nick Coghlan
2012-01-13
1
-1/+1
*
add a asdl bytes type, so Bytes.s be properly typechecked
Benjamin Peterson
2011-08-09
1
-2/+2
*
comment which is not applicable anymore
Benjamin Peterson
2011-07-15
1
-1/+0
*
unify TryExcept and TryFinally (closes #12199)
Benjamin Peterson
2011-05-29
1
-2/+1
*
reflect with statements with multiple items in the AST (closes #12106)
Benjamin Peterson
2011-05-27
1
-1/+3
*
convert ast versioning to mercurial
Benjamin Peterson
2011-03-13
1
-1/+1
[next]