summaryrefslogtreecommitdiffstats
path: root/Parser/pegen.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-46237: Fix the line number of tokenizer errors inside f-strings (GH-30463)Pablo Galindo Salgado2022-01-081-4/+4
* bpo-46110: Restore commit e9898bf153d26059261ffef11f7643ae991e2a4cPablo Galindo Salgado2022-01-031-0/+1
* Revert "bpo-46110: Add a recursion check to avoid stack overflow in the PEG p...Pablo Galindo Salgado2022-01-031-1/+0
* bpo-46110: Add a recursion check to avoid stack overflow in the PEG parser (G...Pablo Galindo Salgado2021-12-201-0/+1
* bpo-45855: Replaced deprecated `PyImport_ImportModuleNoBlock` with PyImport_I...Kumar Aditya2021-12-121-1/+1
* bpo-42918: Improve build-in function compile() in mode 'single' (GH-29934)Weipeng Hong2021-12-101-19/+1
* bpo-45727: Only trigger the 'did you forgot a comma' error suggestion if insi...Pablo Galindo Salgado2021-11-241-1/+3
* Refactor parser compilation units into specific components (GH-29676)Pablo Galindo Salgado2021-11-211-1814/+122
* bpo-45494: Fix error location in EOF tokenizer errors (GH-29108)Pablo Galindo Salgado2021-11-201-2/+7
* bpo-45848: Allow the parser to get error lines from encoded files (GH-29646)Pablo Galindo Salgado2021-11-201-7/+8
* bpo-45727: Make the syntax error for missing comma more consistent (GH-29427)Pablo Galindo Salgado2021-11-191-1/+3
* bpo-45822: Respect PEP 263's coding cookies in the parser even if flags are n...Pablo Galindo Salgado2021-11-161-1/+1
* bpo-45820: Fix a segfault when the parser fails without reading any input (GH...Pablo Galindo Salgado2021-11-161-0/+8
* bpo-45738: Fix computation of error location for invalid continuation (GH-29550)Pablo Galindo Salgado2021-11-141-10/+5
* bpo-45494: Fix parser crash when reporting errors involving invalid continuat...Pablo Galindo Salgado2021-10-191-2/+10
* bpo-45434: Mark the PyTokenizer C API as private (GH-28924)Victor Stinner2021-10-131-8/+8
* bpo-45408: Don't override previous tokenizer errors in the second parser pass...Pablo Galindo Salgado2021-10-071-1/+4
* bpo-43914: Correctly highlight SyntaxError exceptions for invalid generator e...Pablo Galindo Salgado2021-09-271-2/+14
* Update pegen to use the latest upstream developments (GH-27586)Pablo Galindo Salgado2021-08-121-0/+13
* bpo-34013: Generalize the invalid legacy statement error message (GH-27389)Pablo Galindo Salgado2021-07-271-0/+12
* bpo-43950: Distinguish errors happening on character offset decoding (GH-27217)Batuhan Taskaya2021-07-201-5/+13
* bpo-43950: Print columns in tracebacks (PEP 657) (GH-26958)Ammar Askar2021-07-041-23/+23
* bpo-44456: Improve the syntax error when mixing keyword and positional patter...Pablo Galindo2021-06-241-0/+7
* bpo-44409: Fix error location in tokenizer errors that happen during initiali...Pablo Galindo2021-06-141-0/+1
* 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