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 | 18 PyAPI_FUNC(int) PyRun_SimpleFileExFlags( 141 #define PyRun_SimpleFile(f, p) PyRun_SimpleFileExFlags(f, p, 0, NULL) 142 #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/cpython3/Doc/c-api/ |
D | veryhigh.rst | 94 This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, 100 This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, 104 .. c:function:: int PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit, PyCompiler… 110 closed before PyRun_SimpleFileExFlags returns.
|
/external/python/cpython3/Python/ |
D | pythonrun.c | 84 return PyRun_SimpleFileExFlags(fp, filename, closeit, flags); in PyRun_AnyFileExFlags() 373 PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit, in PyRun_SimpleFileExFlags() function 1559 return PyRun_SimpleFileExFlags(f, p, 0, NULL); in PyRun_SimpleFile() 1566 return PyRun_SimpleFileExFlags(f, p, c, NULL); in PyRun_SimpleFileEx()
|
/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/cpython2/Modules/ |
D | main.c | 158 (void) PyRun_SimpleFileExFlags(fp, startup, 0, cf); in RunStartupFile()
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 1882 PyRun_SimpleFileExFlags:int::: 1883 PyRun_SimpleFileExFlags:FILE*:fp:: 1884 PyRun_SimpleFileExFlags:const char*:filename:: 1885 PyRun_SimpleFileExFlags:int:closeit:: 1886 PyRun_SimpleFileExFlags:PyCompilerFlags*:flags::
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 1069 "PyRun_SimpleFileExFlags"
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.1rc1.rst | 256 Decref the module object in :c:func:`PyRun_SimpleFileExFlags` before calling
|
/external/python/cpython3/Modules/ |
D | main.c | 248 (void) PyRun_SimpleFileExFlags(fp, startup, 0, cf); in pymain_run_startup()
|
/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
|