summaryrefslogtreecommitdiffstats
path: root/Parser/action_helpers.c
Commit message (Expand)AuthorAgeFilesLines
* gh-125196: Use PyUnicodeWriter in parser (#125271)Victor Stinner2024-10-121-7/+8
* gh-115754: Use Py_GetConstant(Py_CONSTANT_EMPTY_BYTES) (#125195)Victor Stinner2024-10-091-1/+1
* gh-122300: Preserve AST nodes for format specifiers with single elements (#12...Pablo Galindo Salgado2024-07-261-1/+2
* Fix typos in comments and exception message (#122147)Xie Yanbo2024-07-231-1/+1
* gh-121130: Fix f-string format specifiers with debug expressions (#121150)Pablo Galindo Salgado2024-07-161-22/+41
* Fixes loop variables to be the same types as their limit (GH-120958)Steve Dower2024-06-241-1/+1
* gh-113993: Allow interned strings to be mortal, and fix related issues (GH-12...Petr Viktorin2024-06-211-1/+3
* gh-94808: Reorganize _make_posargs and mark unused code (GH-119227)Mark Jason Dominus (陶敏修)2024-06-041-13/+21
* Simplify _PyPegen_join_names_with_dot() (GH-111602)Serhiy Storchaka2023-11-011-32/+2
* gh-104169: Refactor tokenizer into lexer and wrappers (#110684)Lysandros Nikolaou2023-10-111-1/+0
* gh-110309: Prune empty constant in format specs (#110320)sunmy20192023-10-051-10/+30
* gh-106396: Special-case empty format spec to gen empty JoinedStr node (#106401)Lysandros Nikolaou2023-07-041-0/+12
* gh-105800: Issue SyntaxWarning in f-strings for invalid escape sequences (#10...Pablo Galindo Salgado2023-06-151-3/+3
* gh-105194: Fix format specifier escaped characters in f-strings (#105231)Pablo Galindo Salgado2023-06-021-0/+19
* gh-92536: Remove PyUnicode_READY() calls (#105210)Victor Stinner2023-06-011-6/+0
* gh-104799: Move location of type_params AST fields (#104828)Jelle Zijlstra2023-05-261-11/+15
* gh-104656: Rename typeparams AST node to type_params (#104657)Jelle Zijlstra2023-05-221-3/+3
* gh-103763: Implement PEP 695 (#103764)Jelle Zijlstra2023-05-161-4/+7
* gh-103656: Transfer f-string buffers to parser to avoid use-after-free (GH-10...Lysandros Nikolaou2023-04-271-41/+51
* gh-102856: Initial implementation of PEP 701 (#102855)Pablo Galindo Salgado2023-04-191-90/+449
* gh-81057: Move the Cached Parser Dummy Name to _PyRuntimeState (#100277)Eric Snow2022-12-161-20/+2
* gh-90110: Clean Up the C-analyzer Globals Lists (gh-100091)Eric Snow2022-12-071-1/+2
* gh-81057: Move Globals in Core Code to _PyRuntimeState (gh-99496)Eric Snow2022-11-151-0/+1
* bpo-47212: Improve error messages for un-parenthesized generator expressions ...Matthieu Dartiailh2022-04-051-1/+1
* Refactor parser compilation units into specific components (GH-29676)Pablo Galindo Salgado2021-11-211-0/+1289