Home
last modified time | relevance | path

Searched refs:Py_CompileStringObject (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Include/cpython/
Dpythonrun.h49 PyAPI_FUNC(PyObject *) Py_CompileStringObject(
/external/python/cpython3/Doc/data/
Drefcounts.dat2924 Py_CompileStringObject:PyObject*::+1:
2925 Py_CompileStringObject:const char*:str::
2926 Py_CompileStringObject:PyObject*:filename:0:
2927 Py_CompileStringObject:int:start::
2928 Py_CompileStringObject:PyCompilerFlags*:flags::
2929 Py_CompileStringObject:int:optimize::
Dpython3.13.abi971 …<elf-symbol name='Py_CompileStringObject' type='func-type' binding='global-binding' visibility='de…
23821Py_CompileStringObject' mangled-name='Py_CompileStringObject' filepath='./Include/cpython/pythonru…
/external/python/cpython3/Doc/c-api/
Dveryhigh.rst231 .. c:function:: PyObject* Py_CompileStringObject(const char *str, PyObject *filename, int start, Py…
252 Like :c:func:`Py_CompileStringObject`, but *filename* is a byte string
/external/python/cpython3/Python/
Dpythonrun.c1471 Py_CompileStringObject(const char *str, PyObject *filename, int start, in Py_CompileStringObject() function
1508 co = Py_CompileStringObject(str, filename, start, flags, optimize); in Py_CompileStringExFlags()
Dbltinmodule.c878 result = Py_CompileStringObject(str, filename, start[compile_mode], &cf, optimize); in builtin_compile_impl()