Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | gh-119933: Improve ``SyntaxError`` message for invalid type parameters ↵ | Bénédikt Tran | 2024-06-17 |
| | | | | | expressions (#119976) Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> | ||
* | gh-119724: Revert "bpo-45759: Better error messages for non-matching ↵ | Petr Viktorin | 2024-06-03 |
| | | | | | | 'elif'/'else' statements (#29513)" (#119974) This reverts commit 1c8f912ebdfdb146cd7dd2d7a3a67d2c5045ddb0. | ||
* | gh-118090: Improve error message for empty type param brackets (GH-118091) | Nikita Sobolev | 2024-05-07 |
| | |||
* | gh-116767: fix crash on 'async with' with many context managers (GH-118348) | Irit Katriel | 2024-05-01 |
| | | | | | | | Account for `add_stopiteration_handler` pushing a block for `async with`. To allow generator functions that previously almost hit the `CO_MAXBLOCKS` limit by nesting non-async blocks, the limit is increased by 1. This increase allows one more block in non-generator functions. | ||
* | gh-118082: Improve `import` without names syntax error message (#118083) | Nikita Sobolev | 2024-04-23 |
| | |||
* | gh-109120: Fix syntax error in handlinh of incorrect star expressions (#117444) | Grigoriev Semyon | 2024-04-02 |
| | |||
* | bpo-24612: Improve syntax error for 'not' after an operator (GH-28170) | Pablo Galindo Salgado | 2024-03-26 |
| | | | Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com> | ||
* | gh-111488: Changed error message in case of no 'in' keyword after 'for' in ↵ | Grigoriev Semyon | 2024-01-06 |
| | | | | cmp (#113656) | ||
* | gh-113602: Bail out when the parser tries to override existing errors (#113607) | Pablo Galindo Salgado | 2024-01-02 |
| | | | Signed-off-by: Pablo Galindo <pablogsal@gmail.com> | ||
* | gh-113297: Fix segfault in compiler for with statement with 19 context ↵ | Irit Katriel | 2023-12-22 |
| | | | | managers (#113327) | ||
* | Fix SyntaxWarning in test_syntax.py (GH-112944) | Anthony Sottile | 2023-12-11 |
| | |||
* | gh-112387: Fix error positions for decoded strings with backwards tokenize ↵ | Pablo Galindo Salgado | 2023-11-27 |
| | | | | | errors (#112409) Signed-off-by: Pablo Galindo <pablogsal@gmail.com> | ||
* | gh-112388: Fix an error that was causing the parser to try to overwrite ↵ | Pablo Galindo Salgado | 2023-11-27 |
| | | | | | tokenizer errors (#112410) Signed-off-by: Pablo Galindo <pablogsal@gmail.com> | ||
* | bpo-45759: Better error messages for non-matching 'elif'/'else' statements ↵ | Crowthebird | 2023-11-20 |
| | | | | (#29513) | ||
* | gh-100445: Improve error message for unterminated strings with escapes (#100446) | Shantanu | 2023-10-18 |
| | |||
* | gh-110938: More syntax tests for PEP695 funcs and classes (#110986) | Nikita Sobolev | 2023-10-17 |
| | |||
* | gh-110938: Fix error messages for indented blocks with functions and classes ↵ | Pablo Galindo Salgado | 2023-10-17 |
| | | | | with generic type parameters (#110973) | ||
* | gh-110696: Fix incorrect syntax error message for incorrect argument ↵ | Pablo Galindo Salgado | 2023-10-12 |
| | | | | unpacking (#110706) | ||
* | gh-108179: Add error message for parser stack overflows (#108256) | Dennis Sweeney | 2023-08-22 |
| | |||
* | gh-98931: Add custom error messages to invalid import/from with multiple ↵ | Pablo Galindo Salgado | 2023-06-22 |
| | | | | | | targets (#105985) Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com> | ||
* | gh-104572: Improve error messages for invalid constructs in PEP 695 contexts ↵ | Jelle Zijlstra | 2023-05-17 |
| | | | | (#104573) | ||
* | gh-102310: Change error range for invalid bytes literals (#103663) | Nikita Sobolev | 2023-04-22 |
| | |||
* | gh-101400: Fix incorrect lineno in exception message on continue/break which ↵ | Dong-hee Na | 2023-01-30 |
| | | | | are not in a loop (#101413) | ||
* | gh-100050: Fix an assertion error when raising unclosed parenthesis errors ↵ | Pablo Galindo Salgado | 2022-12-06 |
| | | | | | in the tokenizer (GH-100065) Automerge-Triggered-By: GH:pablogsal | ||
* | gh-90994: Improve error messages upon call arguments syntax errors (GH-96893) | Lysandros Nikolaou | 2022-11-21 |
| | |||
* | gh-99211: Point to except/except* on syntax errors when mixing them (GH-99215) | Lysandros Nikolaou | 2022-11-20 |
| | | | Automerge-Triggered-By: GH:lysnikolaou | ||
* | gh-99153: set location on SyntaxError for try with both except and except* ↵ | Irit Katriel | 2022-11-06 |
| | | | | (GH-99160) | ||
* | gh-98931: Improve error message when the user types 'import x from y' ↵ | Pablo Galindo Salgado | 2022-11-01 |
| | | | | instead of 'from y import x' (#98932) | ||
* | gh-91210: Improve error message when non-default param follows default ↵ | Lysandros Nikolaou | 2022-09-17 |
| | | | | | | (GH-95933) - Improve error message when parameter without a default follows one with a default - Show same error message when positional-only params precede the default/non-default sequence | ||
* | GH-95150: Use position and exception tables for code hashing and equality ↵ | Brandt Bucher | 2022-08-01 |
| | | | | (GH-95509) | ||
* | gh-94192: Fix error for dictionary literals with invalid expression as ↵ | wookie184 | 2022-06-26 |
| | | | | | | | value. (#94304) * Fix error for dictionary literals with invalid expression as value. * Remove trailing whitespace | ||
* | gh-92858: Improve error message for some suites with syntax error before ':' ↵ | wookie184 | 2022-06-23 |
| | | | | (#92894) | ||
* | bpo-47212: Improve error messages for un-parenthesized generator expressions ↵ | Matthieu Dartiailh | 2022-04-05 |
| | | | | (GH-32302) | ||
* | bpo-43224: Implement PEP 646 grammar changes (GH-31018) | Matthew Rahtz | 2022-03-26 |
| | | | Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> | ||
* | bpo-46838: Syntax error improvements for function definitions (GH-31590) | Pablo Galindo Salgado | 2022-03-22 |
| | |||
* | Remove trailing spaces (GH-31695) | Serhiy Storchaka | 2022-03-05 |
| | |||
* | bpo-46707: Avoid potential exponential backtracking in some syntax errors ↵ | Pablo Galindo Salgado | 2022-02-10 |
| | | | | (GH-31241) | ||
* | bpo-46091: Correctly calculate indentation levels for whitespace lines with ↵ | Pablo Galindo Salgado | 2022-01-25 |
| | | | | continuation characters (GH-30130) | ||
* | bpo-46240: Correct the error for unclosed parentheses when the tokenizer is ↵ | Pablo Galindo Salgado | 2022-01-04 |
| | | | | not finished (GH-30378) | ||
* | bpo-46110: Restore commit e9898bf153d26059261ffef11f7643ae991e2a4c | Pablo Galindo Salgado | 2022-01-03 |
| | | | This restores commit e9898bf153d26059261ffef11f7643ae991e2a4c . | ||
* | Revert "bpo-46110: Add a recursion check to avoid stack overflow in the PEG ↵ | Pablo Galindo Salgado | 2022-01-03 |
| | | | | | parser (GH-30177)" (GH-30363) This reverts commit e9898bf153d26059261ffef11f7643ae991e2a4c temporarily as we want to confirm if this commit is the cause of a slowdown at startup time. | ||
* | bpo-46110: Add a recursion check to avoid stack overflow in the PEG parser ↵ | Pablo Galindo Salgado | 2021-12-20 |
| | | | | | (GH-30177) Co-authored-by: Batuhan Taskaya <isidentical@gmail.com> | ||
* | bpo-45292: [PEP-654] add except* (GH-29581) | Irit Katriel | 2021-12-14 |
| | |||
* | bpo-45811: Improve error message when source code contains invisible control ↵ | Pablo Galindo Salgado | 2021-11-20 |
| | | | | characters (GH-29654) | ||
* | bpo-45450: Improve syntax error for parenthesized arguments (GH-28906) | Pablo Galindo Salgado | 2021-11-20 |
| | |||
* | bpo-45738: Fix computation of error location for invalid continuation (GH-29550) | Pablo Galindo Salgado | 2021-11-14 |
| | | | characters in the parser | ||
* | bpo-45764: improve error message when missing '(' after 'def' (GH-29484) | Carl Friedrich Bolz-Tereick | 2021-11-09 |
| | | | | | to achieve this, change the grammar to expect the '(' token after 'def' NAME. Automerge-Triggered-By: GH:pablogsal | ||
* | bpo-45716: Improve the error message when using True/False/None as keywords ↵ | Pablo Galindo Salgado | 2021-11-05 |
| | | | | in a call (GH-29413) | ||
* | Remove trailing spaces. (GH-28706) | Serhiy Storchaka | 2021-10-03 |
| | |||
* | bpo-43914: Correctly highlight SyntaxError exceptions for invalid generator ↵ | Pablo Galindo Salgado | 2021-09-27 |
| | | | | expression in function calls (GH-28576) |