Home
last modified time | relevance | path

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

/external/python/cpython3/Include/cpython/
Dpythonrun.h62 PyAPI_FUNC(PyObject *) PyRun_String(const char *str, int s, PyObject *g, PyObject *l);
76 #define PyRun_String(str, s, g, l) PyRun_StringFlags((str), (s), (g), (l), NULL) macro
/external/python/cpython3/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
/external/python/cpython3/Python/
Dpythonrun.c1659 #undef PyRun_String
1661 PyRun_String(const char *str, int s, PyObject *g, PyObject *l) in PyRun_String() function
Dbltinmodule.c1173 v = PyRun_String(str, Py_file_input, globals, locals); in builtin_exec_impl()
/external/python/cpython3/Doc/data/
Drefcounts.dat1962 PyRun_String:PyObject*::+1:??? -- same as eval_code2()
1963 PyRun_String:const char*:str::
1964 PyRun_String:int:start::
1965 PyRun_String:PyObject*:globals:0:
1966 PyRun_String:PyObject*:locals:0:
Dpython3.13.abi659 …<elf-symbol name='PyRun_String' type='func-type' binding='global-binding' visibility='default-visi…
28916PyRun_String' mangled-name='PyRun_String' filepath='Python/pythonrun.c' line='1661' column='1' vis…
/external/python/cpython3/Doc/c-api/
Dveryhigh.rst174 .. c:function:: PyObject* PyRun_String(const char *str, int start, PyObject *globals, PyObject *loc…
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a1.rst4579 Many :samp:`PyRun_{XXX}()` functions like :c:func:`PyRun_String` were no longer
/external/python/cpython3/Misc/
DHISTORY18244 PyRun_String Py_CompileString