| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | GH-105588: Add missing error checks to some obj2ast_* converters (GH-105589) | Brandt Bucher | 2023-06-15 | 1 | -0/+1 |
|
|
* | gh-105820: Fix tok_mode expression buffer in file & readline tokenizer (#105828) | Lysandros Nikolaou | 2023-06-15 | 1 | -3/+8 |
|
|
* | gh-105800: Issue SyntaxWarning in f-strings for invalid escape sequences (#10... | Pablo Galindo Salgado | 2023-06-15 | 1 | -3/+3 |
|
|
* | gh-105718: Fix buffer allocation in tokenizer with readline (#105728) | Lysandros Nikolaou | 2023-06-13 | 2 | -5/+1 |
|
|
* | gh-105549: Tokenize separately NUMBER and NAME tokens and allow 0-prefixed li... | Pablo Galindo Salgado | 2023-06-09 | 1 | -3/+10 |
|
|
* | gh-105259: Ensure we don't show newline characters for trailing NEWLINE token... | Pablo Galindo Salgado | 2023-06-06 | 2 | -0/+8 |
|
|
* | gh-105194: Fix format specifier escaped characters in f-strings (#105231) | Pablo Galindo Salgado | 2023-06-02 | 3 | -1/+21 |
|
|
* | gh-104799: Default missing lists in AST to the empty list (#104834) | Jelle Zijlstra | 2023-06-02 | 1 | -20/+29 |
|
|
* | gh-92536: Remove PyUnicode_READY() calls (#105210) | Victor Stinner | 2023-06-01 | 1 | -6/+0 |
|
|
* | gh-105042: Disable unmatched parens syntax error in python tokenize (#105061) | Lysandros Nikolaou | 2023-05-30 | 1 | -32/+33 |
|
|
* | gh-105069: Add a readline-like callable to the tokenizer to consume input ite... | Pablo Galindo Salgado | 2023-05-30 | 2 | -3/+135 |
|
|
* | gh-105017: Include CRLF lines in strings and column numbers (#105030) | Marta Gómez Macías | 2023-05-28 | 3 | -16/+30 |
|
|
* | gh-105017: Fix including additional NL token when using CRLF (#105022) | Marta Gómez Macías | 2023-05-27 | 1 | -1/+1 |
|
|
* | Fix indentation in Parser/tokenizer.c (#105012) | Petr Vaněk | 2023-05-27 | 1 | -1/+1 |
|
|
* | gh-104799: Move location of type_params AST fields (#104828) | Jelle Zijlstra | 2023-05-26 | 3 | -20/+24 |
|
|
* | Fix typo in the tokenizer (#104950) | Stepfen Shawn | 2023-05-26 | 1 | -1/+1 |
|
|
* | gh-104866: Tokenize should emit NEWLINE after exiting block with comment (#10... | Lysandros Nikolaou | 2023-05-24 | 1 | -3/+6 |
|
|
* | GH-104668: Don't call PyOS_* hooks in subinterpreters (GH-104674) | Brandt Bucher | 2023-05-22 | 1 | -7/+25 |
|
|
* | gh-102856: Allow comments inside multi-line f-string expresions (#104006) | Cristián Maureira-Fredes | 2023-05-22 | 1 | -4/+0 |
|
|
* | gh-104656: Rename typeparams AST node to type_params (#104657) | Jelle Zijlstra | 2023-05-22 | 3 | -26/+26 |
|
|
* | gh-98836: Extend PyUnicode_FromFormat() (GH-98838) | Serhiy Storchaka | 2023-05-21 | 1 | -8/+3 |
|
|
* | gh-102856: Python tokenizer implementation for PEP 701 (#104323) | Marta Gómez Macías | 2023-05-21 | 5 | -8/+65 |
|
|
* | gh-104658: Fix location of unclosed quote error for multiline f-strings (#104... | Pablo Galindo Salgado | 2023-05-20 | 2 | -2/+6 |
|
|
* | gh-103763: Implement PEP 695 (#103764) | Jelle Zijlstra | 2023-05-16 | 3 | -1964/+2573 |
|
|
* | Trim trailing whitespace and test on CI (#104275) | Hugo van Kemenade | 2023-05-08 | 1 | -1/+1 |
|
|
* | gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205) | Eric Snow | 2023-05-05 | 1 | -0/+1 |
|
|
* | gh-104169: Ensure the tokenizer doesn't overwrite previous errors (#104170) | Pablo Galindo Salgado | 2023-05-04 | 1 | -0/+6 |
|
|
* | gh-97556: Raise null bytes syntax error upon null in multiline string (GH-104... | Lysandros Nikolaou | 2023-05-04 | 1 | -1/+8 |
|
|
* | gh-104016: Fixed off by 1 error in f string tokenizer (#104047) | jx124 | 2023-05-01 | 2 | -5/+9 |
|
|
* | gh-103824: fix use-after-free error in Parser/tokenizer.c (#103993) | chgnrdv | 2023-05-01 | 1 | -0/+4 |
|
|
* | gh-103656: Transfer f-string buffers to parser to avoid use-after-free (GH-10... | Lysandros Nikolaou | 2023-04-27 | 7 | -60/+127 |
|
|
* | gh-103718: Correctly set f-string buffers in all cases (GH-103815) | Lysandros Nikolaou | 2023-04-25 | 1 | -8/+6 |
|
|
* | GH-103727: Avoid advancing tokenizer too far in f-string mode (GH-103775) | Lysandros Nikolaou | 2023-04-24 | 1 | -8/+10 |
|
|
* | GH-103718: Correctly cache and restore f-string buffers when needed (GH-103719) | Lysandros Nikolaou | 2023-04-23 | 2 | -11/+30 |
|
|
* | gh-102310: Change error range for invalid bytes literals (#103663) | Nikita Sobolev | 2023-04-23 | 1 | -1/+2 |
|
|
* | gh-102856: Clean some of the PEP 701 tokenizer implementation (#103634) | Pablo Galindo Salgado | 2023-04-19 | 2 | -74/+67 |
|
|
* | gh-102856: Initial implementation of PEP 701 (#102855) | Pablo Galindo Salgado | 2023-04-19 | 10 | -3630/+5666 |
|
|
* | GH-102711: Fix warnings found by clang (#102712) | Chenxi Mao | 2023-03-28 | 1 | -2/+2 |
|
|
* | gh-102255: Improve build support for Windows API partitions (GH-102256) | Max Bachmann | 2023-03-09 | 1 | -3/+5 |
|
|
* | gh-102416: Do not memoize incorrectly loop rules in the parser (#102467) | Pablo Galindo Salgado | 2023-03-06 | 1 | -216/+0 |
|
|
* | gh-100227: Move _str_replace_inf to PyInterpreterState (gh-102333) | Eric Snow | 2023-02-28 | 1 | -3/+1 |
|
|
* | Fix some typos in asdl_c.py (GH-101757) | abel1502 | 2023-02-10 | 1 | -2/+2 |
|
|
* | GH-101578: Normalize the current exception (GH-101607) | Mark Shannon | 2023-02-08 | 1 | -9/+6 |
|
|
* | gh-100940: Change "char *str" to "const char *str" in KeywordToken: It is an... | Stepfen Shawn | 2023-01-18 | 1 | -1/+1 |
|
|
* | gh-101046: Fix a potential memory leak in the parser when raising MemoryError... | Pablo Galindo Salgado | 2023-01-16 | 1 | -0/+108 |
|
|
* | gh-81057: Move the Cached Parser Dummy Name to _PyRuntimeState (#100277) | Eric Snow | 2022-12-16 | 1 | -20/+2 |
|
|
* | gh-81057: Move More Globals to _PyRuntimeState (gh-100092) | Eric Snow | 2022-12-07 | 1 | -2/+2 |
|
|
* | gh-90110: Clean Up the C-analyzer Globals Lists (gh-100091) | Eric Snow | 2022-12-07 | 1 | -1/+2 |
|
|
* | gh-100050: Fix an assertion error when raising unclosed parenthesis errors in... | Pablo Galindo Salgado | 2022-12-06 | 1 | -0/+4 |
|
|
* | gh-99891: Fix infinite recursion in the tokenizer when showing warnings (GH-9... | Pablo Galindo Salgado | 2022-11-30 | 2 | -0/+9 |
|
|