summaryrefslogtreecommitdiffstats
path: root/Parser
Commit message (Expand)AuthorAgeFilesLines
* bpo-43914: Correctly highlight SyntaxError exceptions for invalid generator e...Miss Islington (bot)2021-09-273-6/+18
* bpo-44947: Refine the syntax error for trailing commas in import statements (...Miss Islington (bot)2021-08-181-5/+8
* [3.10] bpo-44885: Correct the ast locations of f-strings with format specs an...Pablo Galindo Salgado2021-08-121-38/+30
* [3.10] bpo-44838: Refine the custom syntax errors for invalid 'if' expression...Pablo Galindo Salgado2021-08-051-553/+610
* bpo-44792: Improve syntax errors for if expressions (GH-27506) (GH-27565)Miss Islington (bot)2021-08-021-0/+33
* bpo-34013: Don't consider a grouped expression when reporting legacy print sy...Miss Islington (bot)2021-08-011-5/+7
* Update URLs in comments and metadata to use HTTPS (GH-27458) (GH-27478)Miss Islington (bot)2021-07-301-1/+1
* bpo-34013: Move the Python 2 hints from the exception constructor to the pars...Miss Islington (bot)2021-07-271-7/+7
* [3.10] bpo-34013: Generalize the invalid legacy statement error message (GH-2...Pablo Galindo Salgado2021-07-273-244/+323
* bpo-44317: Improve tokenizer errors with more informative locations (GH-26555...Miss Islington (bot)2021-07-101-18/+54
* bpo-44456: Improve the syntax error when mixing keyword and positional patter...Miss Islington (bot)2021-06-243-464/+638
* [3.10] bpo-44368: Improve syntax errors with invalid as pattern targets (GH-2...Pablo Galindo2021-06-181-213/+313
* bpo-44409: Fix error location in tokenizer errors that happen during initiali...Miss Islington (bot)2021-06-141-0/+1
* bpo-44396: Update multi-line-start location when reallocating tokenizer buffe...Miss Islington (bot)2021-06-121-0/+5
* [3.10] Add more const modifiers. (GH-26691). (GH-26692)Serhiy Storchaka2021-06-123-15/+15
* bpo-44385: Remove unused grammar rules (GH-26655)Miss Islington (bot)2021-06-101-1256/+791
* bpo-44368: Ensure we don't raise incorrect custom syntax errors with soft key...Miss Islington (bot)2021-06-091-4/+11
* bpo-44349: Fix edge case when displaying text from files with encoding in syn...Miss Islington (bot)2021-06-091-2/+5
* bpo-43833: Emit warnings for numeric literals followed by keyword (GH-25466)Miss Islington (bot)2021-06-081-0/+128
* bpo-44335: Ensure the tokenizer doesn't go into Python with the error set (GH...Miss Islington (bot)2021-06-081-3/+17
* bpo-44335: Fix a regression when identifying invalid characters in syntax err...Miss Islington (bot)2021-06-081-1/+3
* fix: use unambiguous punction in 'invalid escape sequence' message (GH-26582)Miss Islington (bot)2021-06-081-2/+2
* [3.10] bpo-44305: Improve syntax error for try blocks without except or final...Pablo Galindo2021-06-031-269/+358
* [3.10] bpo-44273: Improve syntax error message for assigning to "..." (GH-264...Pablo Galindo2021-06-031-1/+1
* bpo-11105: Do not crash when compiling recursive ASTs (GH-20594)Miss Islington (bot)2021-06-031-4/+15
* bpo-44201: Avoid side effects of "invalid_*" rules in the REPL (GH-26298) (GH...Miss Islington (bot)2021-05-223-0/+22
* bpo-44180: Fix edge cases in invalid assigment rules in the parser (GH-26283)Miss Islington (bot)2021-05-213-1172/+1403
* bpo-44180: Report generic syntax errors in the furthest position reached in t...Miss Islington (bot)2021-05-211-1/+6
* bpo-44168: Fix error message in the parser for keyword arguments for invalid ...Miss Islington (bot)2021-05-191-541/+584
* bpo-44143: Fix crash in the parser when raising tokenizer errors with an exce...Miss Islington (bot)2021-05-151-0/+1
* bpo-43149: Correct the syntax error message for multiple exception types (GH-...Miss Islington (bot)2021-05-091-1/+1
* bpo-43822: Prioritize tokenizer errors over custom syntax errors when raising...Miss Islington (bot)2021-05-041-0/+3
* bpo-43892: Validate the first term of complex literal value patterns (GH-25735)Brandt Bucher2021-04-303-397/+526
* bpo-43892: Make match patterns explicit in the AST (GH-25585)Nick Coghlan2021-04-294-745/+1352
* bpo-30555: Fix WindowsConsoleIO fails in the presence of fd redirection (GH-1...Segev Finer2021-04-231-4/+2
* bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525)Pablo Galindo2021-04-233-471/+596
* 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-154-637/+796
* 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-122-592/+1152
* bpo-43798: Add source location attributes to alias (GH-25324)Matthew Suozzo2021-04-104-7/+62
* Simplify _PyPegen_fill_token in pegen.c (GH-25295)Pablo Galindo2021-04-091-58/+64
* Sanitize macros and debug functions in pegen.c (GH-25291)Pablo Galindo2021-04-092-3/+10
* Break down some complex functions in pegen.c for readability (GH-25292)Pablo Galindo2021-04-081-79/+91
* Fix possible refleak involving _PyArena_AddPyObject (GH-25289)Erlend Egeberg Aasland2021-04-081-1/+4
* bpo-43244: Rename pycore_ast.h functions to _PyAST_xxx() (GH-25252)Victor Stinner2021-04-074-210/+211
* bpo-43244: Remove Yield macro from pycore_ast.h (GH-25243)Victor Stinner2021-04-071-36/+31