Searched refs:PyRun_SimpleFileExFlags (Results 1 – 13 of 13) sorted by relevance
/external/python/cpython2/Include/ |
D | pythonrun.h | 38 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/ |
D | pythonrun.h | 17 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/ |
D | veryhigh.rst | 92 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/ |
D | pythonrun.c | 761 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/ |
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 closed before PyRun_SimpleFileExFlags returns.
|
/external/python/cpython3/Python/ |
D | pythonrun.c | 87 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/ |
D | main.c | 163 (void) PyRun_SimpleFileExFlags(fp, startup, 0, cf); in RunStartupFile()
|
/external/python/cpython3/Modules/ |
D | main.c | 431 (void) PyRun_SimpleFileExFlags(fp, startup, 0, cf); in pymain_run_startup()
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 1911 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/ |
D | python27.def | 1069 "PyRun_SimpleFileExFlags"
|
/external/python/cpython3/Misc/NEWS.d/ |
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
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7a1.rst | 1421 In PyRun_SimpleFileExFlags avoid invalid memory access with short file
|
/external/python/cpython3/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
|