Searched refs:Py_CompileString (Results 1 – 13 of 13) sorted by relevance
/external/python/cpython3/Include/ |
D | pythonrun.h | 10 PyAPI_FUNC(PyObject *) Py_CompileString(const char *, const char *, int);
|
/external/python/cpython3/Doc/c-api/ |
D | veryhigh.rst | 219 .. 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/ |
D | pythonrun.h | 55 #define Py_CompileString(str, p, s) Py_CompileStringExFlags((str), (p), (s), NULL, -1) macro
|
/external/python/cpython3/Python/ |
D | pythonrun.c | 1673 #undef Py_CompileString 1675 Py_CompileString(const char *str, const char *p, int s) in Py_CompileString() function
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 2906 Py_CompileString:PyObject*::+1: 2907 Py_CompileString:const char*:str:: 2908 Py_CompileString:const char*:filename:: 2909 Py_CompileString:int:start::
|
D | stable_abi.dat | 830 func,Py_CompileString,3.2,,
|
D | python3.13.abi | 968 …<elf-symbol name='Py_CompileString' type='func-type' binding='global-binding' visibility='default-… 28927 …Py_CompileString' mangled-name='Py_CompileString' filepath='Python/pythonrun.c' line='1675' column…
|
/external/python/cpython3/PC/ |
D | python3dll.c | 44 EXPORT_FUNC(Py_CompileString)
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.10.rst | 1948 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/ |
D | stable_abi.toml | 1613 [function.Py_CompileString]
|
D | HISTORY | 18244 PyRun_String Py_CompileString
|
/external/python/cpython3/Lib/test/test_capi/ |
D | test_misc.py | 852 _compile = _testcapi.Py_CompileString
|
/external/python/cpython3/Modules/ |
D | _testcapimodule.c | 331 return Py_CompileString(the_string, "<string>", Py_file_input); in pycompilestring()
|