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-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
*
gh-106145: Make `end_{lineno,col_offset}` required on `type_param` nodes (#10...
Nikita Sobolev
2023-06-30
1
-1/+1
*
gh-106023: Update code using _PyObject_FastCall() (#106257)
Victor Stinner
2023-06-30
1
-2/+2
*
gh-98931: Add custom error messages to invalid import/from with multiple targ...
Pablo Galindo Salgado
2023-06-22
1
-596/+719
*
gh-105938: Emit a SyntaxWarning for escaped braces in an f-string (#105939)
Lysandros Nikolaou
2023-06-20
2
-4/+9
*
GH-105588: Add missing error checks to some obj2ast_* converters (GH-105589)
Brandt Bucher
2023-06-15
1
-0/+1
*
gh-105820: Fix tok_mode expression buffer in file & readline tokenizer (#105828)
Lysandros Nikolaou
2023-06-15
1
-3/+8
*
gh-105800: Issue SyntaxWarning in f-strings for invalid escape sequences (#10...
Pablo Galindo Salgado
2023-06-15
1
-3/+3
*
gh-105718: Fix buffer allocation in tokenizer with readline (#105728)
Lysandros Nikolaou
2023-06-13
2
-5/+1
*
gh-105549: Tokenize separately NUMBER and NAME tokens and allow 0-prefixed li...
Pablo Galindo Salgado
2023-06-09
1
-3/+10
*
gh-105259: Ensure we don't show newline characters for trailing NEWLINE token...
Pablo Galindo Salgado
2023-06-06
2
-0/+8
*
gh-105194: Fix format specifier escaped characters in f-strings (#105231)
Pablo Galindo Salgado
2023-06-02
3
-1/+21
*
gh-104799: Default missing lists in AST to the empty list (#104834)
Jelle Zijlstra
2023-06-02
1
-20/+29
*
gh-92536: Remove PyUnicode_READY() calls (#105210)
Victor Stinner
2023-06-01
1
-6/+0
*
gh-105042: Disable unmatched parens syntax error in python tokenize (#105061)
Lysandros Nikolaou
2023-05-30
1
-32/+33
*
gh-105069: Add a readline-like callable to the tokenizer to consume input ite...
Pablo Galindo Salgado
2023-05-30
2
-3/+135
*
gh-105017: Include CRLF lines in strings and column numbers (#105030)
Marta Gómez Macías
2023-05-28
3
-16/+30
*
gh-105017: Fix including additional NL token when using CRLF (#105022)
Marta Gómez Macías
2023-05-27
1
-1/+1
*
Fix indentation in Parser/tokenizer.c (#105012)
Petr Vaněk
2023-05-27
1
-1/+1
*
gh-104799: Move location of type_params AST fields (#104828)
Jelle Zijlstra
2023-05-26
3
-20/+24
*
Fix typo in the tokenizer (#104950)
Stepfen Shawn
2023-05-26
1
-1/+1
*
gh-104866: Tokenize should emit NEWLINE after exiting block with comment (#10...
Lysandros Nikolaou
2023-05-24
1
-3/+6
*
GH-104668: Don't call PyOS_* hooks in subinterpreters (GH-104674)
Brandt Bucher
2023-05-22
1
-7/+25
*
gh-102856: Allow comments inside multi-line f-string expresions (#104006)
Cristián Maureira-Fredes
2023-05-22
1
-4/+0
*
gh-104656: Rename typeparams AST node to type_params (#104657)
Jelle Zijlstra
2023-05-22
3
-26/+26
*
gh-98836: Extend PyUnicode_FromFormat() (GH-98838)
Serhiy Storchaka
2023-05-21
1
-8/+3
*
gh-102856: Python tokenizer implementation for PEP 701 (#104323)
Marta Gómez Macías
2023-05-21
5
-8/+65
*
gh-104658: Fix location of unclosed quote error for multiline f-strings (#104...
Pablo Galindo Salgado
2023-05-20
2
-2/+6
[prev]
[next]