Home
last modified time | relevance | path

Searched refs:Py_CompileString (Results 1 – 13 of 13) sorted by relevance

/third_party/python/Include/
Dpythonrun.h10 PyAPI_FUNC(PyObject *) Py_CompileString(const char *, const char *, int);
/third_party/python/Doc/c-api/
Dveryhigh.rst233 .. c:function:: PyObject* Py_CompileString(const char *str, const char *filename, int start)
321 .. index:: single: Py_CompileString()
324 :c:func:`Py_CompileString`.
329 .. index:: single: Py_CompileString()
332 from a file or other source; for use with :c:func:`Py_CompileString`. This is
338 .. index:: single: Py_CompileString()
341 :c:func:`Py_CompileString`. This is the symbol used for the interactive
/third_party/python/Include/cpython/
Dpythonrun.h69 #define Py_CompileString(str, p, s) Py_CompileStringExFlags(str, p, s, NULL, -1) macro
/third_party/python/Doc/faq/
Dextending.rst280 :c:func:`Py_CompileString`. If it compiles without errors, try to execute the
343 src = Py_CompileString (code, "<stdin>", Py_single_input);
/third_party/python/Python/
Dpythonrun.c1558 #undef Py_CompileString
1560 Py_CompileString(const char *str, const char *p, int s) in Py_CompileString() function
/third_party/python/Doc/data/
Drefcounts.dat2942 Py_CompileString:PyObject*::+1:
2943 Py_CompileString:const char*:str::
2944 Py_CompileString:const char*:filename::
2945 Py_CompileString:int:start::
Dstable_abi.dat778 function,Py_CompileString,3.2,
/third_party/python/PC/
Dpython3dll.c48 EXPORT_FUNC(Py_CompileString)
/third_party/python/Lib/test/
Dtest_capi.py636 _compile = _testcapi.Py_CompileString
/third_party/python/Doc/whatsnew/
D3.10.rst1934 example, :c:func:`Py_CompileString`. The resulting code object can then be
1940 ``PyNode_Compile`` can be replaced by calling :c:func:`Py_CompileString`.
1944 the file in C and pass the resulting buffer to :c:func:`Py_CompileString`.
1949 :c:func:`PyBytes_AsString` and :c:func:`Py_CompileString`,
1957 code = Py_CompileString(source_buf, filename, Py_file_input);
/third_party/python/Misc/
Dstable_abi.txt1502 function Py_CompileString
DHISTORY18244 PyRun_String Py_CompileString
/third_party/python/Modules/
D_testcapimodule.c403 return Py_CompileString(the_string, "<string>", Py_file_input); in pycompilestring()