summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_syntax.py
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-43822: Improve syntax errors for missing commas (GH-25377)Pablo Galindo2021-04-151-5/+19
* bpo-43823: Improve syntax errors for invalid dictionary literals (GH-25378)Pablo Galindo2021-04-151-0/+32
* bpo-43797: Handle correctly invalid assignments inside function calls and gen...Pablo Galindo2021-04-131-1/+13
* Ensure that early = are not matched by the parser as invalid comparisons (GH-...Pablo Galindo2021-04-131-0/+5
* bpo-43797: Improve syntax error for invalid comparisons (#25317)Pablo Galindo2021-04-121-48/+68
* bpo-43555: Report the column offset for invalid line continuation character (...Pablo Galindo2021-03-221-0/+5
* bpo-42128: Add 'missing :' syntax error message to match statements (GH-24733)Pablo Galindo2021-03-181-0/+36
* bpo-43149: Improve error message for exception group without parentheses (GH-...Pablo Galindo2021-02-071-0/+33
* bpo-43121: Fix incorrect SyntaxError message for missing comma (GH-24436)Pablo Galindo2021-02-031-2/+18
* bpo-42997: Improve error message for missing : before suites (GH-24292)Pablo Galindo2021-02-021-3/+104
* bpo-43017: Improve error message for unparenthesised tuples in comprehensions...Pablo Galindo2021-01-311-0/+15
* bpo-42864: Improve error messages regarding unclosed parentheses (GH-24161)Pablo Galindo2021-01-191-0/+8
* bpo-30858: Improve error location for expressions with assignments (GH-23753)Pablo Galindo2020-12-131-0/+7
* bpo-42218: Correctly handle errors in left-recursive rules (GH-23065)Lysandros Nikolaou2020-10-311-0/+8
* bpo-42214: Fix check for NOTEQUAL token in the PEG parser for the barry_as_fl...Pablo Galindo2020-10-301-0/+17
* bpo-41659: Disallow curly brace directly after primary (GH-22996)Lysandros Nikolaou2020-10-271-0/+3
* bpo-38605: Make 'from __future__ import annotations' the default (GH-20434)Batuhan Taskaya2020-10-061-8/+0
* bpo-39934: Account for control blocks in 'except' in compiler. (GH-22395)Mark Shannon2020-09-251-0/+9
* bpo-40769: Allow extra surrounding parentheses for invalid annotated assignme...Batuhan Taskaya2020-06-271-0/+13
* bpo-41060: Avoid SEGFAULT when calling GET_INVALID_TARGET in the grammar (GH-...Lysandros Nikolaou2020-06-211-0/+8
* bpo-40334: Produce better error messages on invalid targets (GH-20106)Lysandros Nikolaou2020-06-181-1/+60
* bpo-40939: Remove the old parser (GH-20768)Pablo Galindo2020-06-111-1/+0
* bpo-40847: Consider a line with only a LINECONT a blank line (GH-20769)Lysandros Nikolaou2020-06-101-0/+14
* bpo-40903: Handle multiple '=' in invalid assignment rules in the PEG parser ...Pablo Galindo2020-06-081-1/+20
* bpo-40334: Produce better error messages for non-parenthesized genexps (GH-20...Lysandros Nikolaou2020-05-221-5/+3
* bpo-40176: Improve error messages for trailing comma on from import (GH-20294)Batuhan Taskaya2020-05-211-0/+8
* bpo-40334: Reproduce error message for type comments on bare '*' in the new p...Lysandros Nikolaou2020-05-181-0/+10
* bpo-40661: Fix segfault when parsing invalid input (GH-20165)Lysandros Nikolaou2020-05-181-0/+3
* bpo-40334: Correctly identify invalid target in assignment errors (GH-20076)Pablo Galindo2020-05-151-19/+27
* bpo-40618: Disallow invalid targets in augassign and except clauses (GH-20083)Lysandros Nikolaou2020-05-141-0/+12
* bpo-40334: produce specialized errors for invalid del targets (GH-19911)Shantanu2020-05-111-8/+33
* bpo-40334: Spacialized error message for invalid args after bare '*' (GH-19865)Lysandros Nikolaou2020-05-041-3/+3
* bpo-40443: Remove unused imports in tests (GH-19805)Victor Stinner2020-04-291-1/+0
* bpo-40334: Rename PyConfig.use_peg to _use_peg_parser (GH-19670)Victor Stinner2020-04-231-2/+2
* bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503)Pablo Galindo2020-04-221-39/+49
* bpo-40147: Move the check for duplicate keywords to the compiler (GH-19289)Pablo Galindo2020-04-031-1/+1
* bpo-39176: Improve error message for 'named assignment' (GH-17777)Ned Batchelder2020-01-011-1/+1
* bpo-37500: Make sure dead code does not generate bytecode but also detect syn...Pablo Galindo2019-07-151-6/+35
* bpo-1875: Raise SyntaxError in invalid blocks that will be optimised away (GH...Pablo Galindo2019-05-171-0/+14
* bpo-36187: Remove NamedStore. (GH-12167)Serhiy Storchaka2019-03-051-0/+4
* bpo-36052: Raise a SyntaxError when assigning a value to __debug__ with := (G...Stéphane Wirtel2019-02-211-0/+4
* bpo-35169: Improve error messages for forbidden assignments. (GH-10342)Serhiy Storchaka2018-11-201-30/+87
* closes bpo-34641: Further restrict the LHS of keyword argument function call ...Benjamin Peterson2018-09-131-0/+3
* bpo-32489: Allow 'continue' in 'finally' clause. (GH-5822)Serhiy Storchaka2018-03-181-45/+23
* bpo-32482: Fix suspicious code in tests for syntax and grammar. (#5086)Serhiy Storchaka2018-01-041-2/+2
* bpo-32023: Disallow genexprs without parenthesis in class definitions. (#4400)Serhiy Storchaka2017-11-151-0/+4
* bpo-32012: Disallow trailing comma after genexpr without parenthesis. (#4382)Serhiy Storchaka2017-11-151-3/+18
* bpo-28936: Detect lexically first syntax error first (#4097)Ivan Levkivskyi2017-10-261-9/+27
* bpo-31847: Fix commented out tests in test_syntax. (#4084)Serhiy Storchaka2017-10-231-18/+10
* Issue #26110: Add LOAD_METHOD/CALL_METHOD opcodes.Yury Selivanov2016-12-141-0/+27