summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_syntax.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* gh-102310: Change error range for invalid bytes literals (#103663)Nikita Sobolev2023-04-231-0/+24
* gh-101400: Fix incorrect lineno in exception message on continue/break which ...Dong-hee Na2023-01-301-13/+17
* gh-100050: Fix an assertion error when raising unclosed parenthesis errors in...Pablo Galindo Salgado2022-12-061-0/+16
* gh-90994: Improve error messages upon call arguments syntax errors (GH-96893)Lysandros Nikolaou2022-11-201-0/+21
* gh-99211: Point to except/except* on syntax errors when mixing them (GH-99215)Lysandros Nikolaou2022-11-201-2/+2
* gh-99153: set location on SyntaxError for try with both except and except* (G...Irit Katriel2022-11-061-0/+10
* gh-98931: Improve error message when the user types 'import x from y' instead...Pablo Galindo Salgado2022-11-011-0/+16
* gh-91210: Improve error message when non-default param follows default (GH-95...Lysandros Nikolaou2022-09-171-1/+14
* GH-95150: Use position and exception tables for code hashing and equality (GH...Brandt Bucher2022-08-011-1/+2
* gh-94192: Fix error for dictionary literals with invalid expression as value....wookie1842022-06-261-1/+11
* gh-92858: Improve error message for some suites with syntax error before ':' ...wookie1842022-06-231-10/+31
* bpo-47212: Improve error messages for un-parenthesized generator expressions ...Matthieu Dartiailh2022-04-051-0/+7
* bpo-43224: Implement PEP 646 grammar changes (GH-31018)Matthew Rahtz2022-03-261-0/+143
* bpo-46838: Syntax error improvements for function definitions (GH-31590)Pablo Galindo Salgado2022-03-221-0/+204
* Remove trailing spaces (GH-31695)Serhiy Storchaka2022-03-051-2/+2
* bpo-46707: Avoid potential exponential backtracking in some syntax errors (GH...Pablo Galindo Salgado2022-02-101-0/+8
* bpo-46091: Correctly calculate indentation levels for whitespace lines with c...Pablo Galindo Salgado2022-01-251-0/+30
* bpo-46240: Correct the error for unclosed parentheses when the tokenizer is n...Pablo Galindo Salgado2022-01-041-0/+3
* bpo-46110: Restore commit e9898bf153d26059261ffef11f7643ae991e2a4cPablo Galindo Salgado2022-01-031-0/+8
* Revert "bpo-46110: Add a recursion check to avoid stack overflow in the PEG p...Pablo Galindo Salgado2022-01-031-8/+0
* bpo-46110: Add a recursion check to avoid stack overflow in the PEG parser (G...Pablo Galindo Salgado2021-12-201-0/+8
* bpo-45292: [PEP-654] add except* (GH-29581)Irit Katriel2021-12-141-0/+100
* bpo-45811: Improve error message when source code contains invisible control ...Pablo Galindo Salgado2021-11-201-0/+3
* bpo-45450: Improve syntax error for parenthesized arguments (GH-28906)Pablo Galindo Salgado2021-11-201-0/+38
* bpo-45738: Fix computation of error location for invalid continuation (GH-29550)Pablo Galindo Salgado2021-11-141-1/+7
* bpo-45764: improve error message when missing '(' after 'def' (GH-29484)Carl Friedrich Bolz-Tereick2021-11-091-0/+11
* bpo-45716: Improve the error message when using True/False/None as keywords i...Pablo Galindo Salgado2021-11-051-2/+8
* Remove trailing spaces. (GH-28706)Serhiy Storchaka2021-10-031-2/+2
* bpo-43914: Correctly highlight SyntaxError exceptions for invalid generator e...Pablo Galindo Salgado2021-09-271-1/+12
* bpo-45229: Use doctest.DocTestSuite instead of run_doctest (GH-28468)Serhiy Storchaka2021-09-201-5/+6
* bpo-25130: Make unit-test about restricting the maximum number of nested bloc...Carl Friedrich Bolz-Tereick2021-08-281-32/+35
* bpo-45000: Raise SyntaxError when try to delete __debug__ (GH-27947)Dong-hee Na2021-08-251-0/+4
* bpo-44947: Refine the syntax error for trailing commas in import statements (...Pablo Galindo Salgado2021-08-181-0/+7
* bpo-44838: Refine the custom syntax errors for invalid 'if' expressions (GH-2...Pablo Galindo Salgado2021-08-051-0/+8
* bpo-44792: Improve syntax errors for if expressions (GH-27506)Miguel Brito2021-08-021-0/+12
* Remove unnecessary 'invalid_primary' rule in the parser (GH-27186)Pablo Galindo Salgado2021-07-161-1/+1
* bpo-44456: Improve the syntax error when mixing keyword and positional patter...Pablo Galindo2021-06-241-0/+24
* bpo-44368: Improve syntax errors with invalid as pattern targets (GH-26632)Pablo Galindo2021-06-101-0/+14
* bpo-44368: Ensure we don't raise incorrect custom syntax errors with soft key...Pablo Galindo2021-06-091-1/+19
* bpo-44305: Improve syntax error for try blocks without except or finally (GH-...Pablo Galindo2021-06-031-0/+8
* bpo-44273: Improve syntax error message for assigning to "..." (GH-26477)Serhiy Storchaka2021-06-011-1/+1
* bpo-44180: Fix edge cases in invalid assigment rules in the parser (GH-26283)Pablo Galindo2021-05-211-0/+20