Searched refs:PyRun_AnyFileExFlags (Results 1 – 12 of 12) sorted by relevance
/external/python/cpython2/Include/ |
D | pythonrun.h | 36 PyAPI_FUNC(int) PyRun_AnyFileExFlags(FILE *, const char *, int, PyCompilerFlags *); 85 #define PyRun_AnyFile(fp, name) PyRun_AnyFileExFlags(fp, name, 0, NULL) 87 PyRun_AnyFileExFlags(fp, name, closeit, NULL) 89 PyRun_AnyFileExFlags(fp, name, 0, flags)
|
/external/python/cpython3/Include/ |
D | pythonrun.h | 12 PyAPI_FUNC(int) PyRun_AnyFileExFlags( 171 #define PyRun_AnyFile(fp, name) PyRun_AnyFileExFlags(fp, name, 0, NULL) 173 PyRun_AnyFileExFlags(fp, name, closeit, NULL) 175 PyRun_AnyFileExFlags(fp, name, 0, flags)
|
/external/python/cpython3/Modules/ |
D | main.c | 373 int run = PyRun_AnyFileExFlags(fp, filename_str, 1, cf); in pymain_run_file() 512 int run = PyRun_AnyFileExFlags(stdin, "<stdin>", 0, cf); in pymain_run_stdin()
|
/external/python/cpython2/Doc/c-api/ |
D | veryhigh.rst | 46 This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, leaving 52 This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, leaving 58 This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, leaving 62 .. c:function:: int PyRun_AnyFileExFlags(FILE *fp, const char *filename, int closeit, PyCompilerFla…
|
/external/python/cpython2/Python/ |
D | pythonrun.c | 749 PyRun_AnyFileExFlags(FILE *fp, const char *filename, int closeit, in PyRun_AnyFileExFlags() function 1954 return PyRun_AnyFileExFlags(fp, name, 0, NULL); in PyRun_AnyFile() 1961 return PyRun_AnyFileExFlags(fp, name, closeit, NULL); in PyRun_AnyFileEx() 1968 return PyRun_AnyFileExFlags(fp, name, 0, flags); in PyRun_AnyFileFlags()
|
/external/python/cpython3/Doc/c-api/ |
D | veryhigh.rst | 54 This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, leaving 60 This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, leaving 66 This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, leaving 70 .. c:function:: int PyRun_AnyFileExFlags(FILE *fp, const char *filename, int closeit, PyCompilerFla…
|
/external/python/cpython3/Python/ |
D | pythonrun.c | 75 PyRun_AnyFileExFlags(FILE *fp, const char *filename, int closeit, in PyRun_AnyFileExFlags() function 1738 return PyRun_AnyFileExFlags(fp, name, 0, NULL); in PyRun_AnyFile() 1745 return PyRun_AnyFileExFlags(fp, name, closeit, NULL); in PyRun_AnyFileEx() 1752 return PyRun_AnyFileExFlags(fp, name, 0, flags); in PyRun_AnyFileFlags()
|
/external/python/cpython2/Modules/ |
D | main.c | 650 sts = PyRun_AnyFileExFlags( in Py_Main()
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 1846 PyRun_AnyFileExFlags:int::: 1847 PyRun_AnyFileExFlags:FILE*:fp:: 1848 PyRun_AnyFileExFlags:const char*:filename:: 1849 PyRun_AnyFileExFlags:int:closeit:: 1850 PyRun_AnyFileExFlags:PyCompilerFlags*:flags::
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 1085 "PyRun_AnyFileExFlags"
|
/external/python/cpython2/Misc/ |
D | HISTORY | 7739 PyRun_AnyFileExFlags(), PyRun_InteractiveLoopFlags(). These
|
/external/python/cpython3/Misc/ |
D | HISTORY | 25118 PyRun_AnyFileExFlags(), PyRun_InteractiveLoopFlags(). These
|