Searched refs:PyRun_SimpleFileExFlags (Results 1 – 14 of 14) 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/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)
|
| /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 | 79 ``PyRun_SimpleFileExFlags()`` returns. 103 This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, 109 This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, 113 .. c:function:: int PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit, PyCompiler… 119 ``PyRun_SimpleFileExFlags()`` returns.
|
| /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/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()
|
| /external/python/cpython2/Modules/ |
| D | main.c | 163 (void) PyRun_SimpleFileExFlags(fp, startup, 0, cf); in RunStartupFile()
|
| /external/python/cpython3/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::
|
| D | python3.10.abi | 574 …<elf-symbol name='PyRun_SimpleFileExFlags' type='func-type' binding='global-binding' visibility='d… 17693 …PyRun_SimpleFileExFlags' mangled-name='PyRun_SimpleFileExFlags' filepath='Python/pythonrun.c' line…
|
| /external/python/cpython2/PC/os2emx/ |
| D | python27.def | 1069 "PyRun_SimpleFileExFlags"
|
| /external/python/cpython3/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
|
| /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
|