Searched refs:PyRun_StringFlags (Results 1 – 13 of 13) sorted by relevance
/external/python/cpython2/Include/ |
D | pythonrun.h | 58 PyAPI_FUNC(PyObject *) PyRun_StringFlags(const char *, int, PyObject *, 84 #define PyRun_String(str, s, g, l) PyRun_StringFlags(str, s, g, l, NULL)
|
/external/python/cpython3/Include/ |
D | pythonrun.h | 93 PyAPI_FUNC(PyObject *) PyRun_StringFlags(const char *, int, PyObject *, 170 #define PyRun_String(str, s, g, l) PyRun_StringFlags(str, s, g, l, NULL)
|
/external/python/cpython2/Doc/c-api/ |
D | veryhigh.rst | 182 This is a simplified interface to :c:func:`PyRun_StringFlags` below, leaving 186 .. c:function:: PyObject* PyRun_StringFlags(const char *str, int start, PyObject *globals, PyObject… 217 Similar to :c:func:`PyRun_StringFlags`, but the Python source code is read from
|
/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 1120 PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2() 1121 PyRun_StringFlags:char*:str:: 1122 PyRun_StringFlags:int:start:: 1123 PyRun_StringFlags:PyObject*:globals:0: 1124 PyRun_StringFlags:PyObject*:locals:0: 1125 PyRun_StringFlags:PyCompilerFlags*:flags::
|
/external/python/cpython2/Python/ |
D | pythonrun.c | 983 v = PyRun_StringFlags(command, Py_file_input, d, d, flags); in PyRun_SimpleStringFlags() 1337 PyRun_StringFlags(const char *str, int start, PyObject *globals, in PyRun_StringFlags() function 2012 return PyRun_StringFlags(str, s, g, l, NULL); in PyRun_String()
|
D | bltinmodule.c | 707 result = PyRun_StringFlags(str, Py_eval_input, globals, locals, &cf); in builtin_eval() 1262 res = PyRun_StringFlags(str, Py_eval_input, globals, locals, &cf); in builtin_input()
|
D | ceval.c | 5122 v = PyRun_StringFlags(str, Py_file_input, globals, in exec_statement()
|
/external/python/cpython3/Doc/c-api/ |
D | veryhigh.rst | 237 This is a simplified interface to :c:func:`PyRun_StringFlags` below, leaving 241 .. c:function:: PyObject* PyRun_StringFlags(const char *str, int start, PyObject *globals, PyObject… 273 Similar to :c:func:`PyRun_StringFlags`, but the Python source code is read from
|
/external/python/cpython3/Python/ |
D | pythonrun.c | 470 v = PyRun_StringFlags(command, Py_file_input, d, d, flags); in PyRun_SimpleStringFlags() 1054 PyRun_StringFlags(const char *str, int start, PyObject *globals, in PyRun_StringFlags() function 1796 return PyRun_StringFlags(str, s, g, l, NULL); in PyRun_String()
|
D | bltinmodule.c | 959 result = PyRun_StringFlags(str, Py_eval_input, globals, locals, &cf); in builtin_eval_impl() 1048 v = PyRun_StringFlags(str, Py_file_input, globals, in builtin_exec_impl()
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 1930 PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2() 1931 PyRun_StringFlags:const char*:str:: 1932 PyRun_StringFlags:int:start:: 1933 PyRun_StringFlags:PyObject*:globals:0: 1934 PyRun_StringFlags:PyObject*:locals:0: 1935 PyRun_StringFlags:PyCompilerFlags*:flags::
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 1087 "PyRun_StringFlags"
|
/external/python/cpython3/Modules/ |
D | _xxsubinterpretersmodule.c | 1898 PyObject *result = PyRun_StringFlags(codestr, Py_file_input, ns, ns, NULL); in _run_script()
|