Searched refs:PyRun_FileExFlags (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Include/cpython/ |
D | pythonrun.h | 47 PyAPI_FUNC(PyObject *) PyRun_FileExFlags( 111 PyRun_FileExFlags(fp, p, s, g, l, 0, NULL) 113 PyRun_FileExFlags(fp, p, s, g, l, c, NULL) 115 PyRun_FileExFlags(fp, p, s, g, l, 0, flags)
|
/third_party/python/Doc/c-api/ |
D | veryhigh.rst | 208 This is a simplified interface to :c:func:`PyRun_FileExFlags` below, leaving 214 This is a simplified interface to :c:func:`PyRun_FileExFlags` below, leaving 220 This is a simplified interface to :c:func:`PyRun_FileExFlags` below, leaving 224 .. c:function:: PyObject* PyRun_FileExFlags(FILE *fp, const char *filename, int start, PyObject *gl… 229 If *closeit* is true, the file is closed before :c:func:`PyRun_FileExFlags`
|
/third_party/python/Python/ |
D | pythonrun.c | 1220 PyRun_FileExFlags(FILE *fp, const char *filename, int start, PyObject *globals, in PyRun_FileExFlags() function 1511 return PyRun_FileExFlags(fp, p, s, g, l, 0, NULL); in PyRun_File() 1518 return PyRun_FileExFlags(fp, p, s, g, l, c, NULL); in PyRun_FileEx() 1526 return PyRun_FileExFlags(fp, p, s, g, l, 0, flags); in PyRun_FileFlags()
|
/third_party/python/Doc/data/ |
D | refcounts.dat | 1855 PyRun_FileExFlags:PyObject*::+1:??? -- same as eval_code2() 1856 PyRun_FileExFlags:FILE*:fp:: 1857 PyRun_FileExFlags:const char*:filename:: 1858 PyRun_FileExFlags:int:start:: 1859 PyRun_FileExFlags:PyObject*:globals:0: 1860 PyRun_FileExFlags:PyObject*:locals:0: 1861 PyRun_FileExFlags:int:closeit:: 1862 PyRun_FileExFlags:PyCompilerFlags*:flags::
|