aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/Python-tokenize.c
Commit message (Expand)AuthorAge
* gh-111178: Fix function signatures for test_types (#131455)Victor Stinner2025-03-19
* gh-115754: Use Py_GetConstant(Py_CONSTANT_EMPTY_STR) (#125194)Victor Stinner2024-10-09
* gh-120317: Lock around global state in the tokenize module (#120318)Lysandros Nikolaou2024-07-16
* gh-120343: Fix column offsets of multiline tokens in tokenize (#120391)Lysandros Nikolaou2024-06-12
* gh-120343: Do not reset byte_col_offset_diff after multiline tokens (#120352)Lysandros Nikolaou2024-06-11
* gh-119704: Fix reference leak in the ``Python/Python-tokenize.c`` (#119705)Kirill Podoprigora2024-05-29
* gh-119118: Fix performance regression in tokenize module (#119615)Lysandros Nikolaou2024-05-28
* gh-116322: Add Py_mod_gil module slot (#116882)Brett Simmers2024-05-03
* gh-112943: Correctly compute end offsets for multiline tokens in the tokenize...Pablo Galindo Salgado2023-12-11
* Remove unnecessary includes (GH-111633)Serhiy Storchaka2023-11-02
* gh-104169: Refactor tokenizer into lexer and wrappers (#110684)Lysandros Nikolaou2023-10-11
* gh-107015: Remove async_hacks from the tokenizer (#107018)Pablo Galindo Salgado2023-07-26
* gh-105564: Don't include artificial newlines in the line attribute of tokens ...Pablo Galindo Salgado2023-06-09
* gh-105390: Add explicit type cast (#105466)Kirill Podoprigora2023-06-07
* gh-105435: Fix spurious NEWLINE token if file ends with comment without a new...Pablo Galindo Salgado2023-06-07
* gh-105390: Correctly raise TokenError instead of SyntaxError for tokenize err...Pablo Galindo Salgado2023-06-07
* gh-105259: Ensure we don't show newline characters for trailing NEWLINE token...Pablo Galindo Salgado2023-06-06
* gh-105042: Disable unmatched parens syntax error in python tokenize (#105061)Lysandros Nikolaou2023-05-30
* gh-105069: Add a readline-like callable to the tokenizer to consume input ite...Pablo Galindo Salgado2023-05-30
* gh-105017: Include CRLF lines in strings and column numbers (#105030)Marta Gómez Macías2023-05-28
* gh-104976: Ensure trailing dedent tokens are emitted as the previous tokenize...Pablo Galindo Salgado2023-05-26
* gh-104972: Ensure that line attributes in tokens in the tokenize module are c...Pablo Galindo Salgado2023-05-26
* gh-104825: Remove implicit newline in the line attribute in tokens emitted in...Pablo Galindo Salgado2023-05-24
* gh-104741: Add line number attribute to indentation error exception (#104743)Marta Gómez Macías2023-05-22
* gh-102856: Tokenize performance improvement (#104731)Marta Gómez Macías2023-05-22
* gh-102856: Python tokenizer implementation for PEP 701 (#104323)Marta Gómez Macías2023-05-21
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-05
* gh-102856: Initial implementation of PEP 701 (#102855)Pablo Galindo Salgado2023-04-19
* gh-97973: Return all necessary information from the tokenizer (GH-97984)Lysandros Nikolaou2022-10-06
* gh-90928: Statically Initialize the Keywords Tuple in Clinic-Generated Code (...Eric Snow2022-08-11
* bpo-46613: Add PyType_GetModuleByDef to the public API (GH-31081)Petr Viktorin2022-02-11
* bpo-45434: Mark the PyTokenizer C API as private (GH-28924)Victor Stinner2021-10-13
* Remove trailing spaces. (GH-28706)Serhiy Storchaka2021-10-03
* Format the Python-tokenize module and fix exit path (GH-27935)Pablo Galindo Salgado2021-08-25
* Add tests for the C tokenizer and expose it as a private module (GH-27924)Pablo Galindo Salgado2021-08-24