Searched refs:PyRun_StringFlags (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Include/cpython/ |
D | pythonrun.h | 44 PyAPI_FUNC(PyObject *) PyRun_StringFlags(const char *, int, PyObject *, 99 #define PyRun_String(str, s, g, l) PyRun_StringFlags(str, s, g, l, NULL)
|
/third_party/python/Doc/c-api/ |
D | veryhigh.rst | 190 This is a simplified interface to :c:func:`PyRun_StringFlags` below, leaving 194 .. c:function:: PyObject* PyRun_StringFlags(const char *str, int start, PyObject *globals, PyObject… 226 Similar to :c:func:`PyRun_StringFlags`, but the Python source code is read from
|
/third_party/python/Python/ |
D | pythonrun.c | 503 v = PyRun_StringFlags(command, Py_file_input, d, d, flags); in PyRun_SimpleStringFlags() 1164 PyRun_StringFlags(const char *str, int start, PyObject *globals, in PyRun_StringFlags() function 1548 return PyRun_StringFlags(str, s, g, l, NULL); in PyRun_String()
|
D | bltinmodule.c | 980 result = PyRun_StringFlags(str, Py_eval_input, globals, locals, &cf); in builtin_eval_impl() 1069 v = PyRun_StringFlags(str, Py_file_input, globals, in builtin_exec_impl()
|
/third_party/python/Doc/data/ |
D | refcounts.dat | 1910 PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2() 1911 PyRun_StringFlags:const char*:str:: 1912 PyRun_StringFlags:int:start:: 1913 PyRun_StringFlags:PyObject*:globals:0: 1914 PyRun_StringFlags:PyObject*:locals:0: 1915 PyRun_StringFlags:PyCompilerFlags*:flags::
|
/third_party/python/Modules/ |
D | _xxsubinterpretersmodule.c | 1890 PyObject *result = PyRun_StringFlags(codestr, Py_file_input, ns, ns, NULL); in _run_script()
|