Searched refs:PyRun_StringFlags (Results 1 – 7 of 7) 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/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/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/Python/ |
D | pythonrun.c | 974 v = PyRun_StringFlags(command, Py_file_input, d, d, flags); in PyRun_SimpleStringFlags() 1328 PyRun_StringFlags(const char *str, int start, PyObject *globals, in PyRun_StringFlags() function 2000 return PyRun_StringFlags(str, s, g, l, NULL); in PyRun_String()
|
D | bltinmodule.c | 706 result = PyRun_StringFlags(str, Py_eval_input, globals, locals, &cf); in builtin_eval() 1261 res = PyRun_StringFlags(str, Py_eval_input, globals, locals, &cf); in builtin_input()
|
D | ceval.c | 5083 v = PyRun_StringFlags(str, Py_file_input, globals, in exec_statement()
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 1087 "PyRun_StringFlags"
|