summaryrefslogtreecommitdiff
path: root/Parser
Commit message (Expand)AuthorAgeFilesLines
* gh-103763: Implement PEP 695 (#103764)Jelle Zijlstra2023-05-153-1964/+2573
* Trim trailing whitespace and test on CI (#104275)Hugo van Kemenade2023-05-081-1/+1
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-051-0/+1
* gh-104169: Ensure the tokenizer doesn't overwrite previous errors (#104170)Pablo Galindo Salgado2023-05-041-0/+6
* gh-97556: Raise null bytes syntax error upon null in multiline string (GH-104...Lysandros Nikolaou2023-05-041-1/+8
* gh-104016: Fixed off by 1 error in f string tokenizer (#104047)jx1242023-05-012-5/+9
* gh-103824: fix use-after-free error in Parser/tokenizer.c (#103993)chgnrdv2023-05-011-0/+4
* gh-103656: Transfer f-string buffers to parser to avoid use-after-free (GH-10...Lysandros Nikolaou2023-04-277-60/+127
* gh-103718: Correctly set f-string buffers in all cases (GH-103815)Lysandros Nikolaou2023-04-251-8/+6
* GH-103727: Avoid advancing tokenizer too far in f-string mode (GH-103775)Lysandros Nikolaou2023-04-241-8/+10
* GH-103718: Correctly cache and restore f-string buffers when needed (GH-103719)Lysandros Nikolaou2023-04-232-11/+30
* gh-102310: Change error range for invalid bytes literals (#103663)Nikita Sobolev2023-04-221-1/+2
* gh-102856: Clean some of the PEP 701 tokenizer implementation (#103634)Pablo Galindo Salgado2023-04-192-74/+67
* gh-102856: Initial implementation of PEP 701 (#102855)Pablo Galindo Salgado2023-04-1910-3630/+5666
* GH-102711: Fix warnings found by clang (#102712)Chenxi Mao2023-03-281-2/+2
* gh-102255: Improve build support for Windows API partitions (GH-102256)Max Bachmann2023-03-091-3/+5
* gh-102416: Do not memoize incorrectly loop rules in the parser (#102467)Pablo Galindo Salgado2023-03-061-216/+0
* gh-100227: Move _str_replace_inf to PyInterpreterState (gh-102333)Eric Snow2023-02-281-3/+1
* Fix some typos in asdl_c.py (GH-101757)abel15022023-02-091-2/+2
* GH-101578: Normalize the current exception (GH-101607)Mark Shannon2023-02-081-9/+6
* gh-100940: Change "char *str" to "const char *str" in KeywordToken: It is an...Stepfen Shawn2023-01-181-1/+1
* gh-101046: Fix a potential memory leak in the parser when raising MemoryError...Pablo Galindo Salgado2023-01-161-0/+108
* gh-81057: Move the Cached Parser Dummy Name to _PyRuntimeState (#100277)Eric Snow2022-12-161-20/+2
* gh-81057: Move More Globals to _PyRuntimeState (gh-100092)Eric Snow2022-12-071-2/+2
* gh-90110: Clean Up the C-analyzer Globals Lists (gh-100091)Eric Snow2022-12-071-1/+2
* gh-100050: Fix an assertion error when raising unclosed parenthesis errors in...Pablo Galindo Salgado2022-12-061-0/+4
* gh-99891: Fix infinite recursion in the tokenizer when showing warnings (GH-9...Pablo Galindo Salgado2022-11-302-0/+9
* gh-90994: Improve error messages upon call arguments syntax errors (GH-96893)Lysandros Nikolaou2022-11-211-1149/+1395
* gh-99581: Fix a buffer overflow in the tokenizer when copying lines that fill...Pablo Galindo Salgado2022-11-201-1/+6
* gh-99211: Point to except/except* on syntax errors when mixing them (GH-99215)Lysandros Nikolaou2022-11-201-671/+713
* gh-81057: Move Globals in Core Code to _PyRuntimeState (gh-99496)Eric Snow2022-11-151-0/+1
* gh-99300: Use Py_NewRef() in Python/Python-ast.c (#99499)Victor Stinner2022-11-151-4/+5
* gh-81057: Move Global Variables Holding Objects to _PyRuntimeState. (gh-99487)Eric Snow2022-11-141-0/+4
* gh-99300: Use Py_NewRef() in Parser/ directory (#99330)Victor Stinner2022-11-103-9/+4
* gh-99300: Use Py_NewRef() in Python/ directory (#99317)Victor Stinner2022-11-101-8/+7
* gh-99153: set location on SyntaxError for try with both except and except* (G...Irit Katriel2022-11-061-3/+3
* gh-98401: Invalid escape sequences emits SyntaxWarning (#99011)Victor Stinner2022-11-031-2/+9
* gh-98931: Improve error message when the user types 'import x from y' instead...Pablo Galindo Salgado2022-11-011-391/+465
* gh-97669: Create Tools/build/ directory (#97963)Victor Stinner2022-10-171-1/+1
* gh-97997: Add col_offset field to tokenizer and use that for AST nodes (#98000)Lysandros Nikolaou2022-10-072-11/+43
* gh-97973: Return all necessary information from the tokenizer (GH-97984)Lysandros Nikolaou2022-10-064-137/+150
* GH-91079: Decouple C stack overflow checks from Python recursion checks. (GH-...Mark Shannon2022-10-051-6/+3
* gh-96670: Raise SyntaxError when parsing NULL bytes (#97594)Pablo Galindo Salgado2022-09-271-4/+15
* gh-91210: Improve error message when non-default param follows default (GH-95...Lysandros Nikolaou2022-09-171-345/+353
* gh-96678: Fix UB of null pointer arithmetic (GH-96782)Matthias Görgens2022-09-131-1/+1
* gh-96268: Fix loading invalid UTF-8 (#96270)Michael Droettboom2022-09-071-13/+45
* gh-96611: Fix error message for invalid UTF-8 in mid-multiline string (#96623)Michael Droettboom2022-09-071-0/+2
* gh-96587: Raise `SyntaxError` for PEP654 on older `feature_version` (#96588)Nikita Sobolev2022-09-051-1/+1
* gh-95778: CVE-2020-10735: Prevent DoS by very large int() (#96499)Gregory P. Smith2022-09-021-0/+23
* gh-94996: Disallow lambda pos only params with feature_version < (3, 8) (GH-9...Shantanu2022-08-121-2/+2