Searched refs:PyRun_String (Results 1 – 8 of 8) sorted by relevance
/third_party/python/Include/cpython/ |
D | pythonrun.h | 85 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/ |
D | extending.rst | 67 :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/ |
D | pythonrun.c | 1544 #undef PyRun_String 1546 PyRun_String(const char *str, int s, PyObject *g, PyObject *l) in PyRun_String() function
|
D | bltinmodule.c | 1072 v = PyRun_String(str, Py_file_input, globals, locals); in builtin_exec_impl()
|
/third_party/python/Doc/data/ |
D | refcounts.dat | 1904 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/ |
D | veryhigh.rst | 188 .. c:function:: PyObject* PyRun_String(const char *str, int start, PyObject *globals, PyObject *loc…
|
/third_party/python/Misc/NEWS.d/ |
D | 3.9.0a1.rst | 4579 Many ``PyRun_XXX()`` functions like :c:func:`PyRun_String` were no longer
|
/third_party/python/Misc/ |
D | HISTORY | 18244 PyRun_String Py_CompileString
|