summaryrefslogtreecommitdiffstats
path: root/Parser
Commit message (Expand)AuthorAgeFilesLines
* gh-106905: avoid incorrect SystemError about recursion depth mismatch (#106906)Markus Mohrhard2023-11-131-0/+1
* Simplify _PyPegen_join_names_with_dot() (GH-111602)Serhiy Storchaka2023-11-011-32/+2
* gh-111420: Allow type comments in parenthesized `with` statements (#111468)Tomas R2023-10-311-6/+9
* gh-111380: Show SyntaxWarnings only once when parsing if invalid syntax is en...Pablo Galindo Salgado2023-10-271-0/+5
* gh-100445: Improve error message for unterminated strings with escapes (#100446)Shantanu2023-10-181-2/+16
* gh-110938: Fix error messages for indented blocks with functions and classes ...Pablo Galindo Salgado2023-10-171-19/+31
* gh-107450: Remove unnecessary overflow check in parser error handler (#110940)Lysandros Nikolaou2023-10-161-6/+0
* gh-107450: Check for overflow in the tokenizer and fix overflow test (#110832)Lysandros Nikolaou2023-10-162-0/+9
* gh-110805: Allow the repl to show source code and complete tracebacks (#110775)Pablo Galindo Salgado2023-10-133-3/+27
* gh-107450: Raise OverflowError when parser column offset overflows (#110754)Lysandros Nikolaou2023-10-121-0/+6
* gh-110696: Fix incorrect syntax error message for incorrect argument unpackin...Pablo Galindo Salgado2023-10-121-1133/+1485
* gh-104169: Fix test_peg_generator after tokenizer refactoring (#110727)Lysandros Nikolaou2023-10-122-4/+5
* GH-110749: fix unistd.h import in file_tokenizer.c (#110750)Filipe LaĆ­ns2023-10-121-4/+4
* gh-104169: Refactor tokenizer into lexer and wrappers (#110684)Lysandros Nikolaou2023-10-1119-2978/+3075
* gh-110309: Prune empty constant in format specs (#110320)sunmy20192023-10-051-10/+30
* gh-110259: Fix f-strings with multiline expressions and format specs (#110271)Pablo Galindo Salgado2023-10-051-6/+18
* gh-110014: Include explicitly <unistd.h> header (#110155)Victor Stinner2023-09-302-4/+10
* gh-109596: Ensure repeated rules in the grammar are not allowed and fix incor...Pablo Galindo Salgado2023-09-222-1208/+1180
* gh-109114: Relax the check for invalid lambdas inside f-strings to avoid fals...Pablo Galindo Salgado2023-09-081-1124/+1065
* GH-91079: Rename C_RECURSION_LIMIT to Py_C_RECURSION_LIMIT (#108507)Victor Stinner2023-09-081-2/+2
* gh-88943: Improve syntax error for non-ASCII character that follows a numeric...Serhiy Storchaka2023-09-071-1/+1
* gh-108767: Replace ctype.h functions with pyctype.h functions (#108772)Victor Stinner2023-09-011-19/+18
* gh-108444: Remove _PyLong_AsInt() function (#108461)Victor Stinner2023-08-251-1/+1
* gh-108179: Add error message for parser stack overflows (#108256)Dennis Sweeney2023-08-223-1060/+540
* gh-108216: Cleanup #include in internal header files (#108228)Victor Stinner2023-08-211-1/+1
* gh-108113: Make it possible to create an optimized AST (#108154)Irit Katriel2023-08-211-0/+3
* gh-107967: Fix infinite recursion on invalid escape sequence warning (#107968)Lysandros Nikolaou2023-08-151-0/+3
* GH-107263: Increase C stack limit for most functions, except `_PyEval_EvalFra...Mark Shannon2023-08-041-1/+1
* gh-107015: Remove async_hacks from the tokenizer (#107018)Pablo Galindo Salgado2023-07-266-402/+313
* gh-106869: Use new PyMemberDef constant names (#106871)Victor Stinner2023-07-251-2/+1
* gh-106320: Remove _PyBytes_Join() C API (#107144)Victor Stinner2023-07-231-0/+1
* gh-106320: Remove _PyOS_ReadlineTState API (#107034)Victor Stinner2023-07-221-1/+3
* gh-106989: Remove tok report warnings (#106993)Menelaos Kotoglou2023-07-222-6/+0
* gh-106521: Remove _PyObject_LookupAttr() function (GH-106642)Serhiy Storchaka2023-07-121-3/+3
* gh-106396: Special-case empty format spec to gen empty JoinedStr node (#106401)Lysandros Nikolaou2023-07-041-0/+12
* gh-106320: Remove private _PyUnicode codecs C API functions (#106385)Victor Stinner2023-07-041-0/+1
* gh-106320: Remove private _PyErr C API functions (#106356)Victor Stinner2023-07-031-0/+1
* gh-104922: remove PY_SSIZE_T_CLEAN (#106315)Inada Naoki2023-07-022-2/+0
* gh-106145: Make `end_{lineno,col_offset}` required on `type_param` nodes (#10...Nikita Sobolev2023-06-301-1/+1
* gh-106023: Update code using _PyObject_FastCall() (#106257)Victor Stinner2023-06-301-2/+2
* gh-98931: Add custom error messages to invalid import/from with multiple targ...Pablo Galindo Salgado2023-06-221-596/+719
* gh-105938: Emit a SyntaxWarning for escaped braces in an f-string (#105939)Lysandros Nikolaou2023-06-202-4/+9
* GH-105588: Add missing error checks to some obj2ast_* converters (GH-105589)Brandt Bucher2023-06-151-0/+1
* gh-105820: Fix tok_mode expression buffer in file & readline tokenizer (#105828)Lysandros Nikolaou2023-06-151-3/+8
* gh-105800: Issue SyntaxWarning in f-strings for invalid escape sequences (#10...Pablo Galindo Salgado2023-06-151-3/+3
* gh-105718: Fix buffer allocation in tokenizer with readline (#105728)Lysandros Nikolaou2023-06-132-5/+1
* gh-105549: Tokenize separately NUMBER and NAME tokens and allow 0-prefixed li...Pablo Galindo Salgado2023-06-091-3/+10
* gh-105259: Ensure we don't show newline characters for trailing NEWLINE token...Pablo Galindo Salgado2023-06-062-0/+8
* gh-105194: Fix format specifier escaped characters in f-strings (#105231)Pablo Galindo Salgado2023-06-023-1/+21
* gh-104799: Default missing lists in AST to the empty list (#104834)Jelle Zijlstra2023-06-021-20/+29