summaryrefslogtreecommitdiffstats
path: root/Parser
Commit message (Expand)AuthorAgeFilesLines
* Use static inline function Py_EnterRecursiveCall() (#91988)Victor Stinner2022-05-041-5/+6
* gh-81548: Deprecate octal escape sequences with value larger than 0o377 (GH-9...Serhiy Storchaka2022-04-301-7/+18
* gh-87999: Change warning type for numeric literal followed by keyword (GH-91980)Serhiy Storchaka2022-04-271-4/+6
* bpo-47212: Improve error messages for un-parenthesized generator expressions ...Matthieu Dartiailh2022-04-053-4/+5
* bpo-46315: Use fopencookie only on Emscripten 3.x and newer (GH-32266)Christian Heimes2022-04-021-1/+1
* bpo-47126: Update to canonical PEP URLs specified by PEP 676 (GH-32124)Hugo van Kemenade2022-03-301-1/+1
* bpo-47129: Add more informative messages to f-string syntax errors (32127)Maciej Górski2022-03-281-0/+5
* bpo-43224: Implement PEP 646 grammar changes (GH-31018)Matthew Rahtz2022-03-261-2101/+2465
* bpo-47117: Don't crash if we fail to decode characters when the tokenizer buf...Pablo Galindo Salgado2022-03-261-2/+7
* bpo-46315: Use fopencookie() to avoid dup() in _PyTokenizer_FindEncodingFilen...Christian Heimes2022-03-221-6/+34
* bpo-46838: Syntax error improvements for function definitions (GH-31590)Pablo Galindo Salgado2022-03-221-867/+3150
* bpo-46920: Remove code that has explainers why it was disabled (GH-31813)Oleg Iarygin2022-03-141-24/+0
* bpo-46920: Remove disabled debug code added decades ago and likely unnecessa...Oleg Iarygin2022-03-141-11/+0
* bpo-46820: Fix a SyntaxError in a numeric literal followed by "not in" (GH-31...Serhiy Storchaka2022-02-221-0/+3
* bpo-46762: Fix an assert failure in f-strings where > or < is the last charac...Eric V. Smith2022-02-161-10/+10
* Don't print rejected tokens when using the debug flags in the parser (GH-31258)Pablo Galindo Salgado2022-02-101-1/+0
* Allow the parser to avoid nested processing of invalid rules (GH-31252)Pablo Galindo Salgado2022-02-103-1044/+1033
* bpo-46707: Avoid potential exponential backtracking in some syntax errors (GH...Pablo Galindo Salgado2022-02-101-1015/+1020
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-081-9/+10
* bpo-46521: Fix codeop to use a new partial-input mode of the parser (GH-31010)Pablo Galindo Salgado2022-02-083-11/+31
* bpo-14916: use specified tokenizer fd for file input (GH-31006)Paul m. p. P2022-02-011-1/+1
* bpo-46091: Correctly calculate indentation levels for whitespace lines with c...Pablo Galindo Salgado2022-01-251-13/+33
* bpo-46503: Prevent an assert from firing when parsing some invalid \N sequenc...Eric V. Smith2022-01-251-2/+14
* Fix the caret position in some syntax errors in interactive mode (GH-30718)Pablo Galindo Salgado2022-01-201-2/+3
* bpo-46339: Include clarification on assert in 'get_error_line_from_tokenizer_...Pablo Galindo Salgado2022-01-181-0/+3
* bpo-46339: Fix crash in the parser when computing error text for multi-line f...Pablo Galindo Salgado2022-01-111-2/+9
* bpo-46237: Fix the line number of tokenizer errors inside f-strings (GH-30463)Pablo Galindo Salgado2022-01-082-5/+8
* bpo-46289: Make conversion of FormattedValue not optional on ASDL (GH-30467)Batuhan Taskaya2022-01-071-1/+1
* bpo-46240: Correct the error for unclosed parentheses when the tokenizer is n...Pablo Galindo Salgado2022-01-041-1/+2
* bpo-46110: Restore commit e9898bf153d26059261ffef11f7643ae991e2a4cPablo Galindo Salgado2022-01-032-3193/+4581
* Revert "bpo-46110: Add a recursion check to avoid stack overflow in the PEG p...Pablo Galindo Salgado2022-01-032-4581/+3193
* bpo-46110: Add a recursion check to avoid stack overflow in the PEG parser (G...Pablo Galindo Salgado2021-12-202-3193/+4581
* bpo-45292: [PEP-654] add except* (GH-29581)Irit Katriel2021-12-142-1776/+2721
* bpo-45855: Replaced deprecated `PyImport_ImportModuleNoBlock` with PyImport_I...Kumar Aditya2021-12-122-2/+2
* bpo-46054: Fix parsing error when parsing non-utf8 characters in source files...Pablo Galindo Salgado2021-12-121-8/+5
* bpo-42918: Improve build-in function compile() in mode 'single' (GH-29934)Weipeng Hong2021-12-101-19/+1
* bpo-46004: Fix error location for loops with invalid targets (GH-29959)Pablo Galindo Salgado2021-12-071-1/+2
* bpo-45866: pegen strips directory of "generated from" header (GH-29777)Victor Stinner2021-11-261-1/+1
* bpo-45727: Only trigger the 'did you forgot a comma' error suggestion if insi...Pablo Galindo Salgado2021-11-244-4/+7
* Ensure the str member of the tokenizer is always initialised (GH-29681)Pablo Galindo Salgado2021-11-213-3/+3
* Refactor parser compilation units into specific components (GH-29676)Pablo Galindo Salgado2021-11-214-1868/+1894
* bpo-45811: Improve error message when source code contains invisible control ...Pablo Galindo Salgado2021-11-201-0/+6
* bpo-45450: Improve syntax error for parenthesized arguments (GH-28906)Pablo Galindo Salgado2021-11-201-445/+849
* 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-192-22/+24
* 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-142-11/+5
* bpo-45764: improve error message when missing '(' after 'def' (GH-29484)Carl Friedrich Bolz-Tereick2021-11-091-12/+12