summaryrefslogtreecommitdiffstats
path: root/Parser
Commit message (Expand)AuthorAgeFilesLines
* 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
* gh-92536: Remove PyUnicode_READY() calls (#105210)Victor Stinner2023-06-011-6/+0
* gh-105042: Disable unmatched parens syntax error in python tokenize (#105061)Lysandros Nikolaou2023-05-301-32/+33
* gh-105069: Add a readline-like callable to the tokenizer to consume input ite...Pablo Galindo Salgado2023-05-302-3/+135
* gh-105017: Include CRLF lines in strings and column numbers (#105030)Marta Gómez Macías2023-05-283-16/+30
* gh-105017: Fix including additional NL token when using CRLF (#105022)Marta Gómez Macías2023-05-271-1/+1
* Fix indentation in Parser/tokenizer.c (#105012)Petr Vaněk2023-05-271-1/+1
* gh-104799: Move location of type_params AST fields (#104828)Jelle Zijlstra2023-05-263-20/+24
* Fix typo in the tokenizer (#104950)Stepfen Shawn2023-05-261-1/+1
* gh-104866: Tokenize should emit NEWLINE after exiting block with comment (#10...Lysandros Nikolaou2023-05-241-3/+6
* GH-104668: Don't call PyOS_* hooks in subinterpreters (GH-104674)Brandt Bucher2023-05-221-7/+25
* gh-102856: Allow comments inside multi-line f-string expresions (#104006)Cristián Maureira-Fredes2023-05-221-4/+0
* gh-104656: Rename typeparams AST node to type_params (#104657)Jelle Zijlstra2023-05-223-26/+26
* gh-98836: Extend PyUnicode_FromFormat() (GH-98838)Serhiy Storchaka2023-05-211-8/+3
* gh-102856: Python tokenizer implementation for PEP 701 (#104323)Marta Gómez Macías2023-05-215-8/+65
* gh-104658: Fix location of unclosed quote error for multiline f-strings (#104...Pablo Galindo Salgado2023-05-202-2/+6
* gh-103763: Implement PEP 695 (#103764)Jelle Zijlstra2023-05-163-1964/+2573
* Trim trailing whitespace and test on CI (#104275)Hugo van Kemenade2023-05-081-1/+1
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-051-0/+1
* gh-104169: Ensure the tokenizer doesn't overwrite previous errors (#104170)Pablo Galindo Salgado2023-05-041-0/+6
* gh-97556: Raise null bytes syntax error upon null in multiline string (GH-104...Lysandros Nikolaou2023-05-041-1/+8
* gh-104016: Fixed off by 1 error in f string tokenizer (#104047)jx1242023-05-012-5/+9
* gh-103824: fix use-after-free error in Parser/tokenizer.c (#103993)chgnrdv2023-05-011-0/+4
* gh-103656: Transfer f-string buffers to parser to avoid use-after-free (GH-10...Lysandros Nikolaou2023-04-277-60/+127
* gh-103718: Correctly set f-string buffers in all cases (GH-103815)Lysandros Nikolaou2023-04-251-8/+6
* GH-103727: Avoid advancing tokenizer too far in f-string mode (GH-103775)Lysandros Nikolaou2023-04-241-8/+10
* GH-103718: Correctly cache and restore f-string buffers when needed (GH-103719)Lysandros Nikolaou2023-04-232-11/+30
* gh-102310: Change error range for invalid bytes literals (#103663)Nikita Sobolev2023-04-231-1/+2