summaryrefslogtreecommitdiffstats
path: root/Parser
Commit message (Expand)AuthorAgeFilesLines
* gh-130790: Remove references about unicode's readiness from comments (#130801)Sergey Miryanov2025-03-032-5/+1
* gh-130740: Move some `stdbool.h` includes after `Python.h` (#130738)Hugo Beauzée-Luyssen2025-03-021-2/+2
* gh-130618: Fix parser error when using lambdas inside f-strings (#130638)Pablo Galindo Salgado2025-02-271-1/+5
* GH-130396: Use computed stack limits on linux (GH-130398)Mark Shannon2025-02-252-484/+457
* GH-91079: Revert "GH-91079: Implement C stack limits using addresses, not cou...Petr Viktorin2025-02-242-457/+484
* GH-91079: Implement C stack limits using addresses, not counters. (GH-130007)Mark Shannon2025-02-192-484/+457
* gh-129515: Clarify syntax error messages for conditional expressions (#129880)Sergey Miryanov2025-02-181-1253/+1557
* gh-130139: always check ast node type in ast.parse() with ast input (#130140)Irit Katriel2025-02-161-11/+24
* gh-125331: Allow the parser to activate future imports on the fly (#125482)Pablo Galindo Salgado2025-02-143-1/+18
* gh-88535: Improve syntax error for wrongly closed strings (#26633)Pablo Galindo Salgado2025-02-131-609/+756
* gh-116042: Fix location for SyntaxErrors of invalid escapes in the tokenizer ...Pablo Galindo Salgado2025-02-132-8/+46
* gh-128911: Add PyImport_ImportModuleAttr() function (#128912)Victor Stinner2025-01-302-2/+2
* gh-119182: Use public PyUnicodeWriter in Python-ast.c (#129209)Victor Stinner2025-01-231-35/+39
* gh-124363: Treat debug expressions in f-string as raw strings (#128399)Pablo Galindo Salgado2025-01-221-43/+36
* gh-129093: Fix f-string debug text sometimes getting cut off when expression ...Tomas R.2025-01-221-3/+1
* gh-128016: Improved invalid escape sequence warning message (#128020)Umar Butler2025-01-152-8/+28
* gh-126469: remove unnecessary error-checking branch in `lexer.c` (#126473)qqwqqw6892025-01-011-5/+1
* gh-126240: handle `NULL` returned by `_Py_asdl_expr_seq_new` (#126241)Bénédikt Tran2024-10-311-0/+9
* gh-126105: Fix crash in `ast` module, when `._fields` is deleted (#126115)sobolevn2024-10-291-10/+8
* gh-125196: Use PyUnicodeWriter in parser (#125271)Victor Stinner2024-10-121-7/+8
* gh-125268: Use static string for "1e309" in AST (#125272)Sam Gross2024-10-101-2/+0
* gh-115754: Use Py_GetConstant(Py_CONSTANT_EMPTY_STR) (#125194)Victor Stinner2024-10-091-2/+2
* gh-115754: Use Py_GetConstant(Py_CONSTANT_EMPTY_BYTES) (#125195)Victor Stinner2024-10-091-1/+1
* gh-125010: Fix `use-after-free` in AST `repr()` (#125015)Tomas R.2024-10-061-1/+0
* gh-122951: Simplify the grammar of the assignment rule (#124998)Rigel Di Scala2024-10-061-1584/+1525
* gh-111178: Fix function signatures in Python-ast.c (#124942)Victor Stinner2024-10-041-7/+11
* gh-124889: Remove redundant artificial rules in PEG parser (#124893)efimov-mikhail2024-10-031-8512/+1671
* gh-116022: Improve `repr()` of AST nodes (#117046)Tomas R2024-09-181-0/+222
* gh-124064: Fix -Wconversion warnings in Parser/string_parser.c (#124204)Victor Stinner2024-09-181-8/+8
* gh-124064: Fix -Wconversion warnings in Parser/pegen.c (#124181)Victor Stinner2024-09-171-9/+9
* gh-123321: Make Parser/myreadline.c locking safe in free-threaded build (#123...Sam Gross2024-09-061-23/+10
* gh-123321: Fix Parser/myreadline.c to prevent a segfault during a multi-threa...Bar Harel2024-09-041-3/+10
* gh-123562: Improve `SyntaxError` message for `case ... as a.b` (#123563)sobolevn2024-09-021-8/+6
* gh-123440: Improve error message for `except as` used with not a name (#123442)sobolevn2024-08-301-969/+1221
* gh-123229: Fix valgrind warning by initializing the f-string buffers to 0 in ...Pablo Galindo Salgado2024-08-231-1/+2
* gh-122581: Avoid data races when collecting parser statistics (#122694)Lysandros Nikolaou2024-08-061-0/+17
* gh-122300: Preserve AST nodes for format specifiers with single elements (#12...Pablo Galindo Salgado2024-07-261-1/+2
* gh-122270: Fix typos in the Py_DEBUG macro name (GH-122271)Serhiy Storchaka2024-07-251-1/+1
* Fix typos in comments and exception message (#122147)Xie Yanbo2024-07-233-3/+3
* gh-122026: Fix identification of mismatched parentheses inside f-strings (#12...Pablo Galindo Salgado2024-07-191-0/+3
* gh-121905: Consistently use "floating-point" instead of "floating point" (GH-...Serhiy Storchaka2024-07-191-1/+1
* gh-121130: Fix f-string format specifiers with debug expressions (#121150)Pablo Galindo Salgado2024-07-164-27/+62
* gh-121332: Make AST node constructor check _attributes instead of hardcoding ...Jelle Zijlstra2024-07-111-14/+25
* gh-121141: add support for `copy.replace` to AST nodes (#121162)Bénédikt Tran2024-07-041-0/+279
* gh-120155: Fix Coverity issue in parse_string() (#120997)Victor Stinner2024-06-251-0/+5
* gh-120108: Fix deepcopying of AST trees with .parent attributes (#120114)Jelle Zijlstra2024-06-251-17/+14
* gh-120956: Avoid comparison of int to Py_ssize_t in parser (#120959)Lysandros Nikolaou2024-06-241-116/+116
* Fixes loop variables to be the same types as their limit (GH-120958)Steve Dower2024-06-241-1/+1
* gh-119521: Rename IncompleteInputError to _IncompleteInputError and remove fr...Pablo Galindo Salgado2024-06-241-0/+1
* gh-113993: Allow interned strings to be mortal, and fix related issues (GH-12...Petr Viktorin2024-06-212-2/+5