summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_syntax.py
Commit message (Expand)AuthorAgeFilesLines
* gh-142236: Improve error location for missing comma in string concatenations ...Pablo Galindo Salgado2025-12-111-0/+14
* gh-138944: Fix `SyntaxError` message for invalid syntax following valid impor...Brian Schubert2025-10-261-0/+19
* gh-138857: Improve error message for `case` outside of `match` (#138858)sobolevn2025-10-241-0/+36
* gh-140253: Improve the syntax error from an ill-positioned double-star subpat...Bartosz Sławecki2025-10-221-7/+19
* gh-138716: Fix `assert a := b` syntax error message (#138718)sobolevn2025-09-101-2/+7
* gh-136616: Improve `assert` syntax error messages (#136653)sobolevn2025-09-091-0/+65
* gh-135422: Fix regression in `SyntaxError` messages after #134036 (#135423)sobolevn2025-06-301-0/+7
* gh-130077: Properly match full soft keywords in the parser (#135317)Pablo Galindo Salgado2025-06-101-0/+7
* gh-134036: Update test_syntax for gh-133999 (#135204)Victor Stinner2025-06-061-3/+3
* gh-134036: Improve error messages for invalid `raise` statements (#134077)sobolevn2025-06-061-0/+22
* gh-133999: Fix `except` parsing regression in 3.14 (#134035)sobolevn2025-05-171-0/+17
* gh-133379: Fix misuse of the term "arguments" in error messages (GH-133382)Stan Ulbrych2025-05-101-28/+28
* gh-133197: Improve error message for incompatible string / bytes prefixes (#1...sobolevn2025-05-021-7/+63
* gh-123539: Improve SyntaxError msg for `import as` with not a name (#123629)sobolevn2025-05-021-0/+50
* gh-133197: Improve error message for `ft""` and `bt""` cases (#133202)sobolevn2025-04-301-0/+16
* gh-132661: Implement PEP 750 (#132662)Lysandros Nikolaou2025-04-301-0/+8
* gh-129858: Special syntax error for `elif` block after `else` (#129902)Steele Farnsworth2025-04-251-0/+12
* gh-132449: Improve the algorithm to detect typos in keywords (#132837)Pablo Galindo Salgado2025-04-231-0/+6
* gh-132449: Improve syntax error messages for keywords with typos (#132450)Pablo Galindo Salgado2025-04-221-1/+125
* gh-128632: fix segfault on nested __classdict__ type param (#128744)Tomasz Pytel2025-04-041-0/+19
* GH-131770: increase assumed WASI stack size to 131072 (wasi-sdk default) (#13...Filipe Laíns 🇵🇸2025-04-041-0/+1
* gh-131831: Implement PEP 758 – Allow except and except* expressions without...Pablo Galindo Salgado2025-04-011-33/+5
* gh-130080: implement PEP 765 (#130087)Irit Katriel2025-03-171-33/+126
* gh-129515: Clarify syntax error messages for conditional expressions (#129880)Sergey Miryanov2025-02-181-0/+50
* gh-88535: Improve syntax error for wrongly closed strings (#26633)Pablo Galindo Salgado2025-02-131-0/+6
* gh-123562: Improve `SyntaxError` message for `case ... as a.b` (#123563)sobolevn2024-09-021-1/+41
* gh-123440: Improve error message for `except as` used with not a name (#123442)sobolevn2024-08-301-0/+47
* gh-122245: Add test case of generic type with __debug__ (#122322)Irit Katriel2024-07-261-0/+4
* gh-122245: move checks for writes and shadowing of __debug__ to symtable (#12...Irit Katriel2024-07-261-0/+79
* gh-119933: Improve ``SyntaxError`` message for invalid type parameters expres...Bénédikt Tran2024-06-171-0/+100
* gh-119724: Revert "bpo-45759: Better error messages for non-matching 'elif'/'...Petr Viktorin2024-06-041-59/+2
* gh-118090: Improve error message for empty type param brackets (GH-118091)Nikita Sobolev2024-05-071-0/+41
* gh-116767: fix crash on 'async with' with many context managers (GH-118348)Irit Katriel2024-05-011-4/+32
* gh-118082: Improve `import` without names syntax error message (#118083)Nikita Sobolev2024-04-231-0/+12
* gh-109120: Fix syntax error in handlinh of incorrect star expressions (#117444)Grigoriev Semyon2024-04-021-7/+19
* bpo-24612: Improve syntax error for 'not' after an operator (GH-28170)Pablo Galindo Salgado2024-03-261-0/+43
* gh-111488: Changed error message in case of no 'in' keyword after 'for' in cm...Grigoriev Semyon2024-01-061-0/+30
* gh-113602: Bail out when the parser tries to override existing errors (#113607)Pablo Galindo Salgado2024-01-021-0/+2
* gh-113297: Fix segfault in compiler for with statement with 19 context manage...Irit Katriel2023-12-221-0/+26
* Fix SyntaxWarning in test_syntax.py (GH-112944)Anthony Sottile2023-12-111-1/+1
* gh-112387: Fix error positions for decoded strings with backwards tokenize er...Pablo Galindo Salgado2023-11-271-0/+4
* gh-112388: Fix an error that was causing the parser to try to overwrite token...Pablo Galindo Salgado2023-11-271-0/+1
* bpo-45759: Better error messages for non-matching 'elif'/'else' statements (#...Crowthebird2023-11-201-2/+59
* gh-100445: Improve error message for unterminated strings with escapes (#100446)Shantanu2023-10-181-2/+8
* gh-110938: More syntax tests for PEP695 funcs and classes (#110986)Nikita Sobolev2023-10-181-0/+15
* gh-110938: Fix error messages for indented blocks with functions and classes ...Pablo Galindo Salgado2023-10-171-0/+10
* gh-110696: Fix incorrect syntax error message for incorrect argument unpackin...Pablo Galindo Salgado2023-10-121-0/+11
* gh-108179: Add error message for parser stack overflows (#108256)Dennis Sweeney2023-08-221-1/+1
* gh-98931: Add custom error messages to invalid import/from with multiple targ...Pablo Galindo Salgado2023-06-221-0/+16
* gh-104572: Improve error messages for invalid constructs in PEP 695 contexts ...Jelle Zijlstra2023-05-171-0/+62