summaryrefslogtreecommitdiffstats
path: root/Parser/pegen.c
Commit message (Expand)AuthorAgeFilesLines
* Add more const modifiers. (GH-26691)Serhiy Storchaka2021-06-121-7/+7
* bpo-44368: Ensure we don't raise incorrect custom syntax errors with soft key...Pablo Galindo2021-06-091-4/+11
* bpo-44349: Fix edge case when displaying text from files with encoding in syn...Pablo Galindo2021-06-081-2/+5
* bpo-44335: Ensure the tokenizer doesn't go into Python with the error set (GH...Pablo Galindo2021-06-081-3/+17
* bpo-44335: Fix a regression when identifying invalid characters in syntax err...Pablo Galindo2021-06-081-1/+3
* bpo-44273: Improve syntax error message for assigning to "..." (GH-26477)Serhiy Storchaka2021-06-011-1/+1
* bpo-44201: Avoid side effects of "invalid_*" rules in the REPL (GH-26298)Pablo Galindo2021-05-221-0/+3
* bpo-44180: Fix edge cases in invalid assigment rules in the parser (GH-26283)Pablo Galindo2021-05-211-1/+1
* bpo-44180: Report generic syntax errors in the furthest position reached in t...Pablo Galindo2021-05-211-1/+6
* bpo-44143: Fix crash in the parser when raising tokenizer errors with an exce...Pablo Galindo2021-05-151-0/+1
* bpo-43822: Prioritize tokenizer errors over custom syntax errors when raising...Pablo Galindo2021-05-041-0/+3
* bpo-43892: Validate the first term of complex literal value patterns (GH-25735)Brandt Bucher2021-04-301-1/+11
* bpo-43892: Make match patterns explicit in the AST (GH-25585)Nick Coghlan2021-04-291-1/+56
* bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525)Pablo Galindo2021-04-231-7/+31
* bpo-43822: Improve syntax errors for missing commas (GH-25377)Pablo Galindo2021-04-151-0/+18
* bpo-43797: Improve syntax error for invalid comparisons (#25317)Pablo Galindo2021-04-121-4/+4
* bpo-43798: Add source location attributes to alias (GH-25324)Matthew Suozzo2021-04-101-3/+3
* 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-091-2/+7
* 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-071-38/+45
* bpo-43244: Remove the pyarena.h header (GH-25007)Victor Stinner2021-03-241-15/+15
* bpo-43244: Remove parser_interface.h header file (GH-25001)Victor Stinner2021-03-241-17/+0
* bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933)Victor Stinner2021-03-231-1/+0
* bpo-43555: Report the column offset for invalid line continuation character (...Pablo Galindo2021-03-221-4/+3
* bpo-43591: Fix error location in interactive mode for errors at the end of th...Pablo Galindo2021-03-221-5/+9
* bpo-43244: Remove the PyAST_Validate() function (GH-24911)Victor Stinner2021-03-181-1/+2
* bpo-43244: Fix test_peg_generator for PyAST_Validate() (GH-24912)Victor Stinner2021-03-181-1/+2
* bpo-43410: Fix crash in the parser when producing syntax errors when reading ...Pablo Galindo2021-03-141-3/+11
* bpo-42997: Improve error message for missing : before suites (GH-24292)Pablo Galindo2021-02-021-1/+22
* bpo-42986: Fix parser crash when reporting syntax errors in f-string with new...Pablo Galindo2021-01-311-1/+1
* bpo-40176: Improve error messages for unclosed string literals (GH-19346)Batuhan Taskaya2021-01-201-6/+0
* bpo-42864: Simplify the tokenizer exceptions after generic SyntaxError (GH-24...Pablo Galindo2021-01-201-10/+3
* bpo-42864: Improve error messages regarding unclosed parentheses (GH-24161)Pablo Galindo2021-01-191-3/+70
* bpo-42827: Fix crash on SyntaxError in multiline expressions (GH-24140)Lysandros Nikolaou2021-01-141-2/+37
* bpo-42214: Fix check for NOTEQUAL token in the PEG parser for the barry_as_fl...Pablo Galindo2020-10-301-2/+1
* bpo-42206: Propagate and raise errors from PyAST_Validate in the parser (GH-2...Batuhan Taskaya2020-10-301-1/+3
* bpo-42123: Run the parser two times and only enable invalid rules on the seco...Lysandros Nikolaou2020-10-261-0/+13
* bpo-42150: Avoid buffer overflow in the new parser (GH-22978)Pablo Galindo2020-10-251-1/+2
* bpo-42000: Cleanup the AST related C-code (GH-22641)Batuhan Taskaya2020-10-101-1/+1
* bpo-41746: Add type information to asdl_seq objects (GH-22223)Pablo Galindo2020-09-161-87/+100
* bpo-41697: Correctly handle KeywordOrStarred when parsing arguments in the pa...Pablo Galindo2020-09-031-8/+9
* bpo-41690: Use a loop to collect args in the parser instead of recursion (GH-...Pablo Galindo2020-09-021-0/+35
* Validate the AST produced by the parser in debug mode (GH-21643)Pablo Galindo2020-07-271-0/+9
* bpo-41215: Make assertion in the new parser more strict (GH-21364)Lysandros Nikolaou2020-07-061-1/+1
* bpo-41215: Don't use NULL by default in the PEG parser keyword list (GH-21355)Pablo Galindo2020-07-061-2/+5
* bpo-35975: Only use cf_feature_version if PyCF_ONLY_AST in cf_flags (#21021)Guido van Rossum2020-06-281-2/+3
* bpo-41076: Pre-feed the parser with the f-string expression location (GH-21054)Lysandros Nikolaou2020-06-271-0/+3
* bpo-41132: Use pymalloc allocator in the f-string parser (GH-21173)Lysandros Nikolaou2020-06-271-3/+3