mirror of
https://github.com/python/cpython.git
synced 2024-11-29 00:56:12 +01:00
01481f2dc1
* 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>
28 lines
851 B
C
28 lines
851 B
C
#include "Python.h"
|
|
|
|
#include "pegen.h"
|
|
|
|
mod_ty
|
|
_PyParser_ASTFromString(const char *str, PyObject* filename, int mode,
|
|
PyCompilerFlags *flags, PyArena *arena)
|
|
{
|
|
if (PySys_Audit("compile", "yO", str, filename) < 0) {
|
|
return NULL;
|
|
}
|
|
|
|
mod_ty result = _PyPegen_run_parser_from_string(str, mode, filename, flags, arena);
|
|
return result;
|
|
}
|
|
|
|
mod_ty
|
|
_PyParser_ASTFromFile(FILE *fp, PyObject *filename_ob, const char *enc,
|
|
int mode, const char *ps1, const char* ps2,
|
|
PyCompilerFlags *flags, int *errcode, PyArena *arena)
|
|
{
|
|
if (PySys_Audit("compile", "OO", Py_None, filename_ob) < 0) {
|
|
return NULL;
|
|
}
|
|
return _PyPegen_run_parser_from_file_pointer(fp, mode, filename_ob, enc, ps1, ps2,
|
|
flags, errcode, arena);
|
|
}
|