Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dpythonrun.h10 PyAPI_FUNC(PyObject *) Py_CompileString(const char *, const char *, int);
/external/python/cpython3/Doc/c-api/
Dveryhigh.rst219 .. c:function:: PyObject* Py_CompileString(const char *str, const char *filename, int start)
301 .. index:: single: Py_CompileString (C function)
304 :c:func:`Py_CompileString`.
309 .. index:: single: Py_CompileString (C function)
312 from a file or other source; for use with :c:func:`Py_CompileString`. This is
318 .. index:: single: Py_CompileString (C function)
321 :c:func:`Py_CompileString`. This is the symbol used for the interactive
/external/python/cpython3/Include/cpython/
Dpythonrun.h55 #define Py_CompileString(str, p, s) Py_CompileStringExFlags((str), (p), (s), NULL, -1) macro
/external/python/cpython3/Python/
Dpythonrun.c1673 #undef Py_CompileString
1675 Py_CompileString(const char *str, const char *p, int s) in Py_CompileString() function
/external/python/cpython3/Doc/data/
Drefcounts.dat2906 Py_CompileString:PyObject*::+1:
2907 Py_CompileString:const char*:str::
2908 Py_CompileString:const char*:filename::
2909 Py_CompileString:int:start::
Dstable_abi.dat830 func,Py_CompileString,3.2,,
Dpython3.13.abi968 …<elf-symbol name='Py_CompileString' type='func-type' binding='global-binding' visibility='default-…
28927Py_CompileString' mangled-name='Py_CompileString' filepath='Python/pythonrun.c' line='1675' column…
/external/python/cpython3/PC/
Dpython3dll.c44 EXPORT_FUNC(Py_CompileString)
/external/python/cpython3/Doc/whatsnew/
D3.10.rst1948 example, :c:func:`Py_CompileString`. The resulting code object can then be
1954 ``PyNode_Compile`` can be replaced by calling :c:func:`Py_CompileString`.
1958 the file in C and pass the resulting buffer to :c:func:`Py_CompileString`.
1963 :c:func:`PyBytes_AsString` and :c:func:`Py_CompileString`,
1971 code = Py_CompileString(source_buf, filename, Py_file_input);
/external/python/cpython3/Misc/
Dstable_abi.toml1613 [function.Py_CompileString]
DHISTORY18244 PyRun_String Py_CompileString
/external/python/cpython3/Lib/test/test_capi/
Dtest_misc.py852 _compile = _testcapi.Py_CompileString
/external/python/cpython3/Modules/
D_testcapimodule.c331 return Py_CompileString(the_string, "<string>", Py_file_input); in pycompilestring()