Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dpythonrun.h117 PyAPI_FUNC(PyObject *) Py_CompileStringObject(
/external/python/cpython3/Doc/data/
Drefcounts.dat2983 Py_CompileStringObject:PyObject*::+1:
2984 Py_CompileStringObject:const char*:str::
2985 Py_CompileStringObject:PyObject*:filename:0:
2986 Py_CompileStringObject:int:start::
2987 Py_CompileStringObject:PyCompilerFlags*:flags::
2988 Py_CompileStringObject:int:optimize::
/external/python/cpython3/Doc/c-api/
Dveryhigh.rst292 .. c:function:: PyObject* Py_CompileStringObject(const char *str, PyObject *filename, int start, Py…
313 Like :c:func:`Py_CompileStringObject`, but *filename* is a byte string
/external/python/cpython3/Python/
Dpythonrun.c1248 Py_CompileStringObject(const char *str, PyObject *filename, int start, in Py_CompileStringObject() function
1286 co = Py_CompileStringObject(str, filename, start, flags, optimize); in Py_CompileStringExFlags()
Dbltinmodule.c819 result = Py_CompileStringObject(str, filename, start[compile_mode], &cf, optimize); in builtin_compile_impl()