mirror of
https://github.com/python/cpython.git
synced 2025-12-31 12:33:28 +00:00
* The lexer, which include the actual lexeme producing logic, goes into the `lexer` directory. * The wrappers, one wrapper per input mode (file, string, utf-8, and readline), go into the `tokenizer` directory and include logic for creating a lexer instance and managing the buffer for different modes. --------- Co-authored-by: Pablo Galindo <pablogsal@gmail.com> Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com> |
||
|---|---|---|
| .. | ||
| file_tokenizer.c | ||
| helpers.c | ||
| helpers.h | ||
| readline_tokenizer.c | ||
| string_tokenizer.c | ||
| tokenizer.h | ||
| utf8_tokenizer.c | ||