summaryrefslogtreecommitdiffstats
path: root/Parser/parser.c
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-34013: Don't consider a grouped expression when reporting legacy print sy...Pablo Galindo Salgado2021-08-011-5/+7
* Divide the grammar into sections to improve readability (GH-27502)Pablo Galindo Salgado2021-07-311-6585/+6583
* bpo-34013: Move the Python 2 hints from the exception constructor to the pars...Pablo Galindo Salgado2021-07-271-7/+7
* bpo-34013: Generalize the invalid legacy statement error message (GH-27389)Pablo Galindo Salgado2021-07-271-243/+309
* Remove unnecessary 'invalid_primary' rule in the parser (GH-27186)Pablo Galindo Salgado2021-07-161-304/+237
* bpo-44456: Improve the syntax error when mixing keyword and positional patter...Pablo Galindo2021-06-241-464/+628
* bpo-44368: Improve syntax errors with invalid as pattern targets (GH-26632)Pablo Galindo2021-06-101-213/+313
* bpo-44385: Remove unused grammar rules (GH-26655)Lysandros Nikolaou2021-06-101-1256/+791
* bpo-44345: Fix 'generated by' comment in parser.c (GH-26615)Akira Nonaka2021-06-091-1/+1
* bpo-44305: Improve syntax error for try blocks without except or finally (GH-...Pablo Galindo2021-06-031-269/+358
* bpo-44180: Fix edge cases in invalid assigment rules in the parser (GH-26283)Pablo Galindo2021-05-211-1171/+1401
* bpo-44168: Fix error message in the parser for keyword arguments for invalid ...Pablo Galindo2021-05-191-541/+584
* bpo-43149: Correct the syntax error message for multiple exception types (GH-...Pablo Galindo2021-05-081-1/+1
* bpo-43892: Validate the first term of complex literal value patterns (GH-25735)Brandt Bucher2021-04-301-395/+513
* bpo-43892: Make match patterns explicit in the AST (GH-25585)Nick Coghlan2021-04-291-739/+1272
* bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525)Pablo Galindo2021-04-231-460/+550
* bpo-43859: Improve the error message for IndentationError exceptions (GH-25431)Pablo Galindo2021-04-211-541/+1975
* bpo-43823: Fix location of one of the errors for invalid dictionary literals ...Pablo Galindo2021-04-151-1/+1
* bpo-43822: Improve syntax errors for missing commas (GH-25377)Pablo Galindo2021-04-151-637/+775
* bpo-43823: Improve syntax errors for invalid dictionary literals (GH-25378)Pablo Galindo2021-04-151-364/+778
* bpo-43797: Handle correctly invalid assignments inside function calls and gen...Pablo Galindo2021-04-131-6/+6
* Ensure that early = are not matched by the parser as invalid comparisons (GH-...Pablo Galindo2021-04-131-318/+413
* bpo-43797: Improve syntax error for invalid comparisons (#25317)Pablo Galindo2021-04-121-588/+1148
* bpo-43798: Add source location attributes to alias (GH-25324)Matthew Suozzo2021-04-101-3/+57
* bpo-43244: Rename pycore_ast.h functions to _PyAST_xxx() (GH-25252)Victor Stinner2021-04-071-147/+147
* bpo-41064: Improve syntax error for invalid usage of '**' in f-strings (GH-25...Pablo Galindo2021-03-241-1/+34
* bpo-43244: Fix test_peg_generators on Windows (GH-24913)Victor Stinner2021-03-181-3/+2
* bpo-42128: Add 'missing :' syntax error message to match statements (GH-24733)Pablo Galindo2021-03-181-184/+324
* bpo-11717: fix ssize_t redefinition error when targeting 32bit Windows app (G...Jozef Grajciar2021-03-011-172/+172
* bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)Brandt Bucher2021-02-261-1268/+4597
* bpo-43149: Improve error message for exception group without parentheses (GH-...Pablo Galindo2021-02-071-350/+567
* bpo-43121: Fix incorrect SyntaxError message for missing comma (GH-24436)Pablo Galindo2021-02-031-5/+8
* bpo-42997: Improve error message for missing : before suites (GH-24292)Pablo Galindo2021-02-021-402/+991
* bpo-43017: Improve error message for unparenthesised tuples in comprehensions...Pablo Galindo2021-01-311-247/+319
* bpo-42860: Remove type error from grammar (GH-24156)Lysandros Nikolaou2021-01-071-419/+430
* bpo-40631: Disallow single parenthesized star target (GH-24027)Lysandros Nikolaou2021-01-021-540/+787
* bpo-30858: Improve error location for expressions with assignments (GH-23753)Pablo Galindo2020-12-131-4/+4
* Refactor the grammar to match the language specification docs (GH-23574)Pablo Galindo2020-11-301-94/+94
* bpo-42381: Allow walrus in set literals and set comprehensions (GH-23332)Pablo Galindo2020-11-171-1118/+953
* bpo-42316: Allow unparenthesized walrus operator in indexes (GH-23317)Lysandros Nikolaou2020-11-161-6/+6
* bpo-42374: Allow unparenthesized walrus in genexps (GH-23319)Lysandros Nikolaou2020-11-161-6/+6
* bpo-42218: Correctly handle errors in left-recursive rules (GH-23065)Lysandros Nikolaou2020-10-311-0/+18
* bpo-42214: Fix check for NOTEQUAL token in the PEG parser for the barry_as_fl...Pablo Galindo2020-10-301-1/+1
* bpo-41659: Disallow curly brace directly after primary (GH-22996)Lysandros Nikolaou2020-10-271-167/+234
* bpo-42123: Run the parser two times and only enable invalid rules on the seco...Lysandros Nikolaou2020-10-261-47/+47
* bpo-41746: Cast to typed seqs in CHECK macros to avoid type erasure (GH-22864)Lysandros Nikolaou2020-10-211-37/+37
* bpo-41979: Accept star-unpacking on with-item targets (GH-22611)Batuhan Taskaya2020-10-091-6/+9
* bpo-41746: Add type information to asdl_seq objects (GH-22223)Pablo Galindo2020-09-161-349/+364
* bpo-41697: Correctly handle KeywordOrStarred when parsing arguments in the pa...Pablo Galindo2020-09-031-1/+10
* bpo-41690: Use a loop to collect args in the parser instead of recursion (GH-...Pablo Galindo2020-09-021-503/+589