Home
last modified time | relevance | path

Searched refs:PyRun_SimpleFileExFlags (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Include/cpython/
Dpythonrun.h21 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/
Dveryhigh.rst101 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/
Dpythonrun.c482 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/
Drefcounts.dat1891 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/
D3.10.0a4.rst119 :c:func:`PyRun_SimpleFileExFlags()` now uses the correct encoding to decode
D3.8.0a1.rst1078 Decref the module object in :c:func:`PyRun_SimpleFileExFlags` before calling
1153 ``PyRun_SimpleFileExFlags`` removes ``__cached__`` from module in addition
/third_party/python/Misc/
DHISTORY6511 `PyRun_SimpleFileExFlags()` when filename points to a pyc/pyo file, closeit is
15133 - Issue #3845: In PyRun_SimpleFileExFlags avoid invalid memory access with