Home
last modified time | relevance | path

Searched refs:Py_CompileStringExFlags (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Include/
Dpythonrun.h103 #define Py_CompileString(str, p, s) Py_CompileStringExFlags(str, p, s, NULL, -1)
104 #define Py_CompileStringFlags(str, p, s, f) Py_CompileStringExFlags(str, p, s, f, -1)
105 PyAPI_FUNC(PyObject *) Py_CompileStringExFlags(
/external/python/cpython3/Programs/
D_freeze_importlib.c103 code = Py_CompileStringExFlags(text, code_name, Py_file_input, NULL, 0); in main()
/external/python/cpython3/Python/
Dpythonrun.c1108 Py_CompileStringExFlags(const char *str, const char *filename_str, int start, in Py_CompileStringExFlags() function
1588 return Py_CompileStringExFlags(str, p, s, NULL, -1); in Py_CompileString()
1596 return Py_CompileStringExFlags(str, p, s, flags, -1); in Py_CompileStringFlags()
/external/python/cpython3/Doc/data/
Drefcounts.dat2929 Py_CompileStringExFlags:PyObject*::+1:
2930 Py_CompileStringExFlags:const char*:str::
2931 Py_CompileStringExFlags:const char*:filename::
2932 Py_CompileStringExFlags:int:start::
2933 Py_CompileStringExFlags:PyCompilerFlags*:flags::
2934 Py_CompileStringExFlags:int:optimize::
/external/python/cpython3/Doc/c-api/
Dveryhigh.rst267 This is a simplified interface to :c:func:`Py_CompileStringExFlags` below, with
290 .. c:function:: PyObject* Py_CompileStringExFlags(const char *str, const char *filename, int start,…