Searched refs:PyRun_SimpleFileExFlags (Results 1 – 7 of 7) sorted by relevance
/third_party/python/Include/cpython/ |
D | pythonrun.h | 21 PyAPI_FUNC(int) PyRun_SimpleFileExFlags( 106 #define PyRun_SimpleFile(f, p) PyRun_SimpleFileExFlags(f, p, 0, NULL) 107 #define PyRun_SimpleFileEx(f, p, c) PyRun_SimpleFileExFlags(f, p, c, NULL)
|
/third_party/python/Doc/c-api/ |
D | veryhigh.rst | 101 This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, 107 This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, 111 .. c:function:: int PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit, PyCompiler… 117 ``PyRun_SimpleFileExFlags()`` returns.
|
/third_party/python/Python/ |
D | pythonrun.c | 482 PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit, in PyRun_SimpleFileExFlags() function 1533 return PyRun_SimpleFileExFlags(f, p, 0, NULL); in PyRun_SimpleFile() 1540 return PyRun_SimpleFileExFlags(f, p, c, NULL); in PyRun_SimpleFileEx()
|
/third_party/python/Doc/data/ |
D | refcounts.dat | 1891 PyRun_SimpleFileExFlags:int::: 1892 PyRun_SimpleFileExFlags:FILE*:fp:: 1893 PyRun_SimpleFileExFlags:const char*:filename:: 1894 PyRun_SimpleFileExFlags:int:closeit:: 1895 PyRun_SimpleFileExFlags:PyCompilerFlags*:flags::
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0a4.rst | 119 :c:func:`PyRun_SimpleFileExFlags()` now uses the correct encoding to decode
|
D | 3.8.0a1.rst | 1078 Decref the module object in :c:func:`PyRun_SimpleFileExFlags` before calling 1153 ``PyRun_SimpleFileExFlags`` removes ``__cached__`` from module in addition
|
/third_party/python/Misc/ |
D | HISTORY | 6511 `PyRun_SimpleFileExFlags()` when filename points to a pyc/pyo file, closeit is 15133 - Issue #3845: In PyRun_SimpleFileExFlags avoid invalid memory access with
|