aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Parser/string_parser.c
Commit message (Expand)AuthorAge
* gh-130740: Move some `stdbool.h` includes after `Python.h` (#130738)Hugo Beauzée-Luyssen2025-03-02
* gh-116042: Fix location for SyntaxErrors of invalid escapes in the tokenizer ...Pablo Galindo Salgado2025-02-13
* gh-128016: Improved invalid escape sequence warning message (#128020)Umar Butler2025-01-15
* gh-124064: Fix -Wconversion warnings in Parser/string_parser.c (#124204)Victor Stinner2024-09-18
* gh-120155: Fix Coverity issue in parse_string() (#120997)Victor Stinner2024-06-25
* gh-111380: Show SyntaxWarnings only once when parsing if invalid syntax is en...Pablo Galindo Salgado2023-10-27
* gh-104169: Fix test_peg_generator after tokenizer refactoring (#110727)Lysandros Nikolaou2023-10-12
* gh-104169: Refactor tokenizer into lexer and wrappers (#110684)Lysandros Nikolaou2023-10-11
* gh-106320: Remove _PyBytes_Join() C API (#107144)Victor Stinner2023-07-23
* gh-106320: Remove private _PyUnicode codecs C API functions (#106385)Victor Stinner2023-07-04
* gh-105938: Emit a SyntaxWarning for escaped braces in an f-string (#105939)Lysandros Nikolaou2023-06-20
* gh-102310: Change error range for invalid bytes literals (#103663)Nikita Sobolev2023-04-22
* gh-102856: Initial implementation of PEP 701 (#102855)Pablo Galindo Salgado2023-04-19
* gh-99300: Use Py_NewRef() in Parser/ directory (#99330)Victor Stinner2022-11-10
* gh-98401: Invalid escape sequences emits SyntaxWarning (#99011)Victor Stinner2022-11-03
* gh-94869: Fix the location in some expressions for multi-line f-string ast no...Pablo Galindo Salgado2022-07-16
* gh-93418: Fix an assert when an f-string expression is followed by an '=', bu...Eric V. Smith2022-06-01
* gh-93283: Improve error message for f-string with invalid conversion characte...Serhiy Storchaka2022-05-31
* gh-81548: Deprecate octal escape sequences with value larger than 0o377 (GH-9...Serhiy Storchaka2022-04-30
* bpo-47129: Add more informative messages to f-string syntax errors (32127)Maciej Górski2022-03-28
* bpo-46762: Fix an assert failure in f-strings where > or < is the last charac...Eric V. Smith2022-02-16
* bpo-46503: Prevent an assert from firing when parsing some invalid \N sequenc...Eric V. Smith2022-01-24
* bpo-46237: Fix the line number of tokenizer errors inside f-strings (GH-30463)Pablo Galindo Salgado2022-01-08
* bpo-45461: Fix IncrementalDecoder and StreamReader in the "unicode-escape" co...Serhiy Storchaka2021-10-14
* bpo-45434: Mark the PyTokenizer C API as private (GH-28924)Victor Stinner2021-10-13
* Optimized code format (GH-28599)Rajendra arora2021-09-28
* bpo-44885: Correct the ast locations of f-strings with format specs and repea...Pablo Galindo Salgado2021-08-12
* Add more const modifiers. (GH-26691)Serhiy Storchaka2021-06-12
* fix: use unambiguous punction in 'invalid escape sequence' message (GH-26582)Ned Batchelder2021-06-08
* bpo-43244: Rename pycore_ast.h functions to _PyAST_xxx() (GH-25252)Victor Stinner2021-04-07
* bpo-43244: Remove the pyarena.h header (GH-25007)Victor Stinner2021-03-24
* Remove full stop from a bytes-related SyntaxError message (GH-24300)numbermaniac2021-01-23
* bpo-42806: Fix ast locations of f-strings inside parentheses (GH-24067)Pablo Galindo2021-01-03
* bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)Victor Stinner2020-12-01
* bpo-40998: Address compiler warnings found by ubsan (GH-20929)Christian Heimes2020-11-18
* bpo-41746: Add type information to asdl_seq objects (GH-22223)Pablo Galindo2020-09-16
* Fix trivial typo in the PEG string parser (GH-21508)Eric V. Smith2020-07-16
* Fix possibly-unitialized warning in string_parser.c. (GH-21503)Benjamin Peterson2020-07-16
* bpo-41076: Pre-feed the parser with the f-string expression location (GH-21054)Lysandros Nikolaou2020-06-28
* bpo-41132: Use pymalloc allocator in the f-string parser (GH-21173)Lysandros Nikolaou2020-06-27
* Remove old comment in string_parser.c (GH-20906)Pablo Galindo2020-06-16
* Improve readability and style in parser files (GH-20884)Pablo Galindo2020-06-15
* bpo-40939: Remove the old parser (GH-20768)Pablo Galindo2020-06-11