Home
last modified time | relevance | path

Searched refs:PyRun_String (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Include/cpython/
Dpythonrun.h85 PyAPI_FUNC(PyObject *) PyRun_String(const char *str, int s, PyObject *g, PyObject *l);
99 #define PyRun_String(str, s, g, l) PyRun_StringFlags(str, s, g, l, NULL) macro
/third_party/python/Doc/faq/
Dextending.rst67 :c:func:`PyRun_String`; see the source for :c:func:`PyRun_SimpleString` in
74 Call the function :c:func:`PyRun_String` from the previous question with the
/third_party/python/Python/
Dpythonrun.c1544 #undef PyRun_String
1546 PyRun_String(const char *str, int s, PyObject *g, PyObject *l) in PyRun_String() function
Dbltinmodule.c1072 v = PyRun_String(str, Py_file_input, globals, locals); in builtin_exec_impl()
/third_party/python/Doc/data/
Drefcounts.dat1904 PyRun_String:PyObject*::+1:??? -- same as eval_code2()
1905 PyRun_String:const char*:str::
1906 PyRun_String:int:start::
1907 PyRun_String:PyObject*:globals:0:
1908 PyRun_String:PyObject*:locals:0:
/third_party/python/Doc/c-api/
Dveryhigh.rst188 .. c:function:: PyObject* PyRun_String(const char *str, int start, PyObject *globals, PyObject *loc…
/third_party/python/Misc/NEWS.d/
D3.9.0a1.rst4579 Many ``PyRun_XXX()`` functions like :c:func:`PyRun_String` were no longer
/third_party/python/Misc/
DHISTORY18244 PyRun_String Py_CompileString