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
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-126240: handle `NULL` returned by `_Py_asdl_expr_seq_new` (#126241)
Bénédikt Tran
2024-10-31
1
-0/+9
*
gh-126105: Fix crash in `ast` module, when `._fields` is deleted (#126115)
sobolevn
2024-10-29
1
-10/+8
*
gh-125196: Use PyUnicodeWriter in parser (#125271)
Victor Stinner
2024-10-12
1
-7/+8
*
gh-125268: Use static string for "1e309" in AST (#125272)
Sam Gross
2024-10-10
1
-2/+0
*
gh-115754: Use Py_GetConstant(Py_CONSTANT_EMPTY_STR) (#125194)
Victor Stinner
2024-10-09
1
-2/+2
*
gh-115754: Use Py_GetConstant(Py_CONSTANT_EMPTY_BYTES) (#125195)
Victor Stinner
2024-10-09
1
-1/+1
*
gh-125010: Fix `use-after-free` in AST `repr()` (#125015)
Tomas R.
2024-10-06
1
-1/+0
*
gh-122951: Simplify the grammar of the assignment rule (#124998)
Rigel Di Scala
2024-10-06
1
-1584/+1525
*
gh-111178: Fix function signatures in Python-ast.c (#124942)
Victor Stinner
2024-10-04
1
-7/+11
*
gh-124889: Remove redundant artificial rules in PEG parser (#124893)
efimov-mikhail
2024-10-03
1
-8512/+1671
*
gh-116022: Improve `repr()` of AST nodes (#117046)
Tomas R
2024-09-18
1
-0/+222
*
gh-124064: Fix -Wconversion warnings in Parser/string_parser.c (#124204)
Victor Stinner
2024-09-18
1
-8/+8
*
gh-124064: Fix -Wconversion warnings in Parser/pegen.c (#124181)
Victor Stinner
2024-09-17
1
-9/+9
*
gh-123321: Make Parser/myreadline.c locking safe in free-threaded build (#123...
Sam Gross
2024-09-06
1
-23/+10
*
gh-123321: Fix Parser/myreadline.c to prevent a segfault during a multi-threa...
Bar Harel
2024-09-04
1
-3/+10
*
gh-123562: Improve `SyntaxError` message for `case ... as a.b` (#123563)
sobolevn
2024-09-02
1
-8/+6
*
gh-123440: Improve error message for `except as` used with not a name (#123442)
sobolevn
2024-08-30
1
-969/+1221
*
gh-123229: Fix valgrind warning by initializing the f-string buffers to 0 in ...
Pablo Galindo Salgado
2024-08-23
1
-1/+2
*
gh-122581: Avoid data races when collecting parser statistics (#122694)
Lysandros Nikolaou
2024-08-06
1
-0/+17
*
gh-122300: Preserve AST nodes for format specifiers with single elements (#12...
Pablo Galindo Salgado
2024-07-26
1
-1/+2
*
gh-122270: Fix typos in the Py_DEBUG macro name (GH-122271)
Serhiy Storchaka
2024-07-25
1
-1/+1
*
Fix typos in comments and exception message (#122147)
Xie Yanbo
2024-07-23
3
-3/+3
*
gh-122026: Fix identification of mismatched parentheses inside f-strings (#12...
Pablo Galindo Salgado
2024-07-19
1
-0/+3
*
gh-121905: Consistently use "floating-point" instead of "floating point" (GH-...
Serhiy Storchaka
2024-07-19
1
-1/+1
*
gh-121130: Fix f-string format specifiers with debug expressions (#121150)
Pablo Galindo Salgado
2024-07-16
4
-27/+62
*
gh-121332: Make AST node constructor check _attributes instead of hardcoding ...
Jelle Zijlstra
2024-07-11
1
-14/+25
*
gh-121141: add support for `copy.replace` to AST nodes (#121162)
Bénédikt Tran
2024-07-04
1
-0/+279
*
gh-120155: Fix Coverity issue in parse_string() (#120997)
Victor Stinner
2024-06-25
1
-0/+5
*
gh-120108: Fix deepcopying of AST trees with .parent attributes (#120114)
Jelle Zijlstra
2024-06-25
1
-17/+14
*
gh-120956: Avoid comparison of int to Py_ssize_t in parser (#120959)
Lysandros Nikolaou
2024-06-24
1
-116/+116
*
Fixes loop variables to be the same types as their limit (GH-120958)
Steve Dower
2024-06-24
1
-1/+1
*
gh-119521: Rename IncompleteInputError to _IncompleteInputError and remove fr...
Pablo Galindo Salgado
2024-06-24
1
-0/+1
*
gh-113993: Allow interned strings to be mortal, and fix related issues (GH-12...
Petr Viktorin
2024-06-21
2
-2/+5
*
gh-94808: Reorganize _make_posargs and mark unused code (GH-119227)
Mark Jason Dominus (陶敏修)
2024-06-04
1
-13/+21
*
gh-119724: Revert "bpo-45759: Better error messages for non-matching 'elif'/'...
Petr Viktorin
2024-06-04
1
-548/+450
*
gh-118235: Move RAISE_SYNTAX_ERROR actions to invalid rules and make sure the...
Petr Viktorin
2024-05-30
1
-1416/+1538
*
gh-119118: Fix performance regression in tokenize module (#119615)
Lysandros Nikolaou
2024-05-28
2
-0/+26
*
gh-118851: Default ctx arguments to AST constructors to Load() (#118854)
Jelle Zijlstra
2024-05-09
1
-0/+7
*
gh-118090: Improve error message for empty type param brackets (GH-118091)
Nikita Sobolev
2024-05-07
1
-797/+962
*
gh-117486: Improve behavior for user-defined AST subclasses (#118212)
Jelle Zijlstra
2024-05-06
1
-14/+17
*
gh-116322: Add Py_mod_gil module slot (#116882)
Brett Simmers
2024-05-03
1
-0/+1
*
gh-116126: Implement PEP 696 (#116129)
Jelle Zijlstra
2024-05-03
2
-446/+551
*
gh-116988: Remove duplicates of `annotated_rhs` in the Grammar (#117004)
David Rubin
2024-04-24
1
-2091/+1560
*
gh-118082: Improve `import` without names syntax error message (#118083)
Nikita Sobolev
2024-04-23
1
-149/+200
*
gh-109120: Fix syntax error in handlinh of incorrect star expressions (#117444)
Grigoriev Semyon
2024-04-02
1
-1230/+1417
*
gh-117266: Fix crashes on user-created AST subclasses (GH-117276)
Jelle Zijlstra
2024-03-28
1
-2/+13
*
bpo-24612: Improve syntax error for 'not' after an operator (GH-28170)
Pablo Galindo Salgado
2024-03-26
1
-594/+970
*
gh-116437: Use new C API PyDict_Pop() to simplify the code (GH-116438)
Serhiy Storchaka
2024-03-07
1
-9/+9
*
gh-105858: Improve AST node constructors (#105880)
Jelle Zijlstra
2024-02-28
1
-7/+231
*
gh-115823: Calculate correctly error locations when dealing with implicit enc...
Pablo Galindo Salgado
2024-02-26
1
-11/+9
[next]