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-111488: Changed error message in case of no 'in' keyword after 'for' in cm...
Grigoriev Semyon
2024-01-06
1
-1592/+1785
*
gh-113703: Correctly identify incomplete f-strings in the codeop module (#113...
Pablo Galindo Salgado
2024-01-05
1
-2/+6
*
gh-113602: Bail out when the parser tries to override existing errors (#113607)
Pablo Galindo Salgado
2024-01-02
1
-0/+4
*
gh-106905: Use separate structs to track recursion depth in each PyAST_mod2ob...
Yilei Yang
2023-12-25
1
-25/+28
*
gh-112943: Correctly compute end offsets for multiline tokens in the tokenize...
Pablo Galindo Salgado
2023-12-11
2
-5/+12
*
Fix typos in variable names, function names, and comments (GH-101868)
Yang Hau
2023-12-01
1
-1/+1
*
gh-112387: Fix error positions for decoded strings with backwards tokenize er...
Pablo Galindo Salgado
2023-11-27
1
-0/+4
*
gh-112388: Fix an error that was causing the parser to try to overwrite token...
Pablo Galindo Salgado
2023-11-27
1
-0/+4
*
gh-112243: Don't include comments in f-string debug expressions (#112284)
Pablo Galindo Salgado
2023-11-20
1
-6/+49
*
bpo-45759: Better error messages for non-matching 'elif'/'else' statements (#...
Crowthebird
2023-11-20
1
-435/+533
*
GH-111807: Lower the parser stack depth under WASI debug builds (#112225)
Brett Cannon
2023-11-20
1
-1/+5
*
gh-111956: Add thread-safe one-time initialization. (gh-111960)
Sam Gross
2023-11-16
1
-47/+42
*
gh-106905: avoid incorrect SystemError about recursion depth mismatch (#106906)
Markus Mohrhard
2023-11-13
1
-0/+1
*
Simplify _PyPegen_join_names_with_dot() (GH-111602)
Serhiy Storchaka
2023-11-01
1
-32/+2
*
gh-111420: Allow type comments in parenthesized `with` statements (#111468)
Tomas R
2023-10-31
1
-6/+9
*
gh-111380: Show SyntaxWarnings only once when parsing if invalid syntax is en...
Pablo Galindo Salgado
2023-10-27
1
-0/+5
*
gh-100445: Improve error message for unterminated strings with escapes (#100446)
Shantanu
2023-10-18
1
-2/+16
*
gh-110938: Fix error messages for indented blocks with functions and classes ...
Pablo Galindo Salgado
2023-10-17
1
-19/+31
*
gh-107450: Remove unnecessary overflow check in parser error handler (#110940)
Lysandros Nikolaou
2023-10-16
1
-6/+0
*
gh-107450: Check for overflow in the tokenizer and fix overflow test (#110832)
Lysandros Nikolaou
2023-10-16
2
-0/+9
*
gh-110805: Allow the repl to show source code and complete tracebacks (#110775)
Pablo Galindo Salgado
2023-10-13
3
-3/+27
*
gh-107450: Raise OverflowError when parser column offset overflows (#110754)
Lysandros Nikolaou
2023-10-12
1
-0/+6
*
gh-110696: Fix incorrect syntax error message for incorrect argument unpackin...
Pablo Galindo Salgado
2023-10-12
1
-1133/+1485
*
gh-104169: Fix test_peg_generator after tokenizer refactoring (#110727)
Lysandros Nikolaou
2023-10-12
2
-4/+5
*
GH-110749: fix unistd.h import in file_tokenizer.c (#110750)
Filipe LaĆns
2023-10-12
1
-4/+4
*
gh-104169: Refactor tokenizer into lexer and wrappers (#110684)
Lysandros Nikolaou
2023-10-11
19
-2978/+3075
*
gh-110309: Prune empty constant in format specs (#110320)
sunmy2019
2023-10-05
1
-10/+30
*
gh-110259: Fix f-strings with multiline expressions and format specs (#110271)
Pablo Galindo Salgado
2023-10-05
1
-6/+18
*
gh-110014: Include explicitly <unistd.h> header (#110155)
Victor Stinner
2023-09-30
2
-4/+10
*
gh-109596: Ensure repeated rules in the grammar are not allowed and fix incor...
Pablo Galindo Salgado
2023-09-22
2
-1208/+1180
*
gh-109114: Relax the check for invalid lambdas inside f-strings to avoid fals...
Pablo Galindo Salgado
2023-09-08
1
-1124/+1065
*
GH-91079: Rename C_RECURSION_LIMIT to Py_C_RECURSION_LIMIT (#108507)
Victor Stinner
2023-09-08
1
-2/+2
*
gh-88943: Improve syntax error for non-ASCII character that follows a numeric...
Serhiy Storchaka
2023-09-07
1
-1/+1
*
gh-108767: Replace ctype.h functions with pyctype.h functions (#108772)
Victor Stinner
2023-09-01
1
-19/+18
*
gh-108444: Remove _PyLong_AsInt() function (#108461)
Victor Stinner
2023-08-25
1
-1/+1
*
gh-108179: Add error message for parser stack overflows (#108256)
Dennis Sweeney
2023-08-22
3
-1060/+540
*
gh-108216: Cleanup #include in internal header files (#108228)
Victor Stinner
2023-08-21
1
-1/+1
*
gh-108113: Make it possible to create an optimized AST (#108154)
Irit Katriel
2023-08-21
1
-0/+3
*
gh-107967: Fix infinite recursion on invalid escape sequence warning (#107968)
Lysandros Nikolaou
2023-08-15
1
-0/+3
*
GH-107263: Increase C stack limit for most functions, except `_PyEval_EvalFra...
Mark Shannon
2023-08-04
1
-1/+1
*
gh-107015: Remove async_hacks from the tokenizer (#107018)
Pablo Galindo Salgado
2023-07-26
6
-402/+313
*
gh-106869: Use new PyMemberDef constant names (#106871)
Victor Stinner
2023-07-25
1
-2/+1
*
gh-106320: Remove _PyBytes_Join() C API (#107144)
Victor Stinner
2023-07-23
1
-0/+1
*
gh-106320: Remove _PyOS_ReadlineTState API (#107034)
Victor Stinner
2023-07-22
1
-1/+3
*
gh-106989: Remove tok report warnings (#106993)
Menelaos Kotoglou
2023-07-22
2
-6/+0
*
gh-106521: Remove _PyObject_LookupAttr() function (GH-106642)
Serhiy Storchaka
2023-07-12
1
-3/+3
*
gh-106396: Special-case empty format spec to gen empty JoinedStr node (#106401)
Lysandros Nikolaou
2023-07-04
1
-0/+12
*
gh-106320: Remove private _PyUnicode codecs C API functions (#106385)
Victor Stinner
2023-07-04
1
-0/+1
*
gh-106320: Remove private _PyErr C API functions (#106356)
Victor Stinner
2023-07-03
1
-0/+1
*
gh-104922: remove PY_SSIZE_T_CLEAN (#106315)
Inada Naoki
2023-07-02
2
-2/+0
[next]