Searched refs:Py_CompileStringExFlags (Results 1 – 5 of 5) sorted by relevance
| /third_party/python/Include/cpython/ |
| D | pythonrun.h | 57 PyAPI_FUNC(PyObject *) Py_CompileStringExFlags( 69 #define Py_CompileString(str, p, s) Py_CompileStringExFlags(str, p, s, NULL, -1) 70 #define Py_CompileStringFlags(str, p, s, f) Py_CompileStringExFlags(str, p, s, f, -1)
|
| /third_party/python/Programs/ |
| D | _freeze_importlib.c | 103 code = Py_CompileStringExFlags(text, buf, Py_file_input, NULL, 0); in main()
|
| /third_party/python/Python/ |
| D | pythonrun.c | 1386 Py_CompileStringExFlags(const char *str, const char *filename_str, int start, in Py_CompileStringExFlags() function 1562 return Py_CompileStringExFlags(str, p, s, NULL, -1); in Py_CompileString() 1570 return Py_CompileStringExFlags(str, p, s, flags, -1); in Py_CompileStringFlags()
|
| /third_party/python/Doc/data/ |
| D | refcounts.dat | 2947 Py_CompileStringExFlags:PyObject*::+1: 2948 Py_CompileStringExFlags:const char*:str:: 2949 Py_CompileStringExFlags:const char*:filename:: 2950 Py_CompileStringExFlags:int:start:: 2951 Py_CompileStringExFlags:PyCompilerFlags*:flags:: 2952 Py_CompileStringExFlags:int:optimize::
|
| /third_party/python/Doc/c-api/ |
| D | veryhigh.rst | 241 This is a simplified interface to :c:func:`Py_CompileStringExFlags` below, with 264 .. c:function:: PyObject* Py_CompileStringExFlags(const char *str, const char *filename, int start,…
|