summaryrefslogtreecommitdiffstats
path: root/Parser/lexer
Commit message (Expand)AuthorAgeFilesLines
* gh-135801: Add the module parameter to compile() etc (GH-139652)Serhiy Storchaka2025-11-132-0/+3
* gh-140576: Fixed crash produced by lexer in case of dedented zero byte (#140583)Mikhail Efimov2025-10-291-0/+3
* gh-139516: Fix lambda colon start format spec in f-string in tokenizer (#139657)Tomasz Pytel2025-10-072-1/+3
* gh-135148: Correctly handle f/t strings with comments and debug expressions (...Pablo Galindo Salgado2025-07-161-20/+68
* gh-129958: New syntax error in format spec applies to both f-strings and t-st...Dylan2025-06-261-1/+2
* gh-133197: Improve error message for incompatible string / bytes prefixes (#1...sobolevn2025-05-021-17/+56
* gh-133197: Improve error message for `ft""` and `bt""` cases (#133202)sobolevn2025-04-301-3/+17
* gh-132661: Implement PEP 750 (#132662)Lysandros Nikolaou2025-04-305-74/+106
* gh-132769: Refactor possible read-out-of-bounds in `lexer.c` (#132770)sobolevn2025-04-211-1/+1
* gh-129958: Properly disallow newlines in format specs in single-quoted f-stri...Pablo Galindo Salgado2025-04-181-0/+8
* gh-130790: Remove references about unicode's readiness from comments (#130801)Sergey Miryanov2025-03-031-3/+1
* gh-130618: Fix parser error when using lambdas inside f-strings (#130638)Pablo Galindo Salgado2025-02-271-1/+5
* gh-129093: Fix f-string debug text sometimes getting cut off when expression ...Tomas R.2025-01-221-3/+1
* gh-126469: remove unnecessary error-checking branch in `lexer.c` (#126473)qqwqqw6892025-01-011-5/+1
* gh-123229: Fix valgrind warning by initializing the f-string buffers to 0 in ...Pablo Galindo Salgado2024-08-231-1/+2
* gh-122026: Fix identification of mismatched parentheses inside f-strings (#12...Pablo Galindo Salgado2024-07-191-0/+3
* gh-121905: Consistently use "floating-point" instead of "floating point" (GH-...Serhiy Storchaka2024-07-191-1/+1
* gh-121130: Fix f-string format specifiers with debug expressions (#121150)Pablo Galindo Salgado2024-07-163-5/+21
* gh-114569: Use PyMem_* APIs for most non-PyObject uses (#114574)Erlend E. Aasland2024-01-261-2/+2
* gh-113703: Correctly identify incomplete f-strings in the codeop module (#113...Pablo Galindo Salgado2024-01-051-2/+6
* gh-112243: Don't include comments in f-string debug expressions (#112284)Pablo Galindo Salgado2023-11-201-6/+49
* gh-100445: Improve error message for unterminated strings with escapes (#100446)Shantanu2023-10-181-2/+16
* gh-107450: Check for overflow in the tokenizer and fix overflow test (#110832)Lysandros Nikolaou2023-10-161-0/+4
* gh-104169: Refactor tokenizer into lexer and wrappers (#110684)Lysandros Nikolaou2023-10-116-0/+1805