Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dpythonrun.h38 PyAPI_FUNC(int) PyRun_SimpleFileExFlags(FILE *, const char *, int, PyCompilerFlags *);
91 #define PyRun_SimpleFile(f, p) PyRun_SimpleFileExFlags(f, p, 0, NULL)
92 #define PyRun_SimpleFileEx(f, p, c) PyRun_SimpleFileExFlags(f, p, c, NULL)
/external/python/cpython3/Include/
Dpythonrun.h17 PyAPI_FUNC(int) PyRun_SimpleFileExFlags(
177 #define PyRun_SimpleFile(f, p) PyRun_SimpleFileExFlags(f, p, 0, NULL)
178 #define PyRun_SimpleFileEx(f, p, c) PyRun_SimpleFileExFlags(f, p, c, NULL)
/external/python/cpython2/Doc/c-api/
Dveryhigh.rst92 This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below,
98 This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below,
104 This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below,
108 .. c:function:: int PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit, PyCompiler…
112 file. If *closeit* is true, the file is closed before PyRun_SimpleFileExFlags
/external/python/cpython2/Python/
Dpythonrun.c761 return PyRun_SimpleFileExFlags(fp, filename, closeit, flags); in PyRun_AnyFileExFlags()
919 PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit, in PyRun_SimpleFileExFlags() function
1997 return PyRun_SimpleFileExFlags(f, p, 0, NULL); in PyRun_SimpleFile()
2004 return PyRun_SimpleFileExFlags(f, p, c, NULL); in PyRun_SimpleFileEx()
/external/python/cpython3/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 closed before PyRun_SimpleFileExFlags returns.
/external/python/cpython3/Python/
Dpythonrun.c87 return PyRun_SimpleFileExFlags(fp, filename, closeit, flags); in PyRun_AnyFileExFlags()
382 PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit, in PyRun_SimpleFileExFlags() function
1781 return PyRun_SimpleFileExFlags(f, p, 0, NULL); in PyRun_SimpleFile()
1788 return PyRun_SimpleFileExFlags(f, p, c, NULL); in PyRun_SimpleFileEx()
/external/python/cpython2/Modules/
Dmain.c163 (void) PyRun_SimpleFileExFlags(fp, startup, 0, cf); in RunStartupFile()
/external/python/cpython3/Modules/
Dmain.c431 (void) PyRun_SimpleFileExFlags(fp, startup, 0, cf); in pymain_run_startup()
/external/python/cpython3/Doc/data/
Drefcounts.dat1911 PyRun_SimpleFileExFlags:int:::
1912 PyRun_SimpleFileExFlags:FILE*:fp::
1913 PyRun_SimpleFileExFlags:const char*:filename::
1914 PyRun_SimpleFileExFlags:int:closeit::
1915 PyRun_SimpleFileExFlags:PyCompilerFlags*:flags::
/external/python/cpython2/PC/os2emx/
Dpython27.def1069 "PyRun_SimpleFileExFlags"
/external/python/cpython3/Misc/NEWS.d/
D3.8.0a1.rst1078 Decref the module object in :c:func:`PyRun_SimpleFileExFlags` before calling
1153 ``PyRun_SimpleFileExFlags`` removes ``__cached__`` from module in addition
/external/python/cpython2/Misc/NEWS.d/
D2.7a1.rst1421 In PyRun_SimpleFileExFlags avoid invalid memory access with short file
/external/python/cpython3/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