Searched refs:Py_CompileStringObject (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython3/Include/ |
D | pythonrun.h | 111 PyAPI_FUNC(PyObject *) Py_CompileStringObject(
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 2942 Py_CompileStringObject:PyObject*::+1: 2943 Py_CompileStringObject:const char*:str:: 2944 Py_CompileStringObject:PyObject*:filename:0: 2945 Py_CompileStringObject:int:start:: 2946 Py_CompileStringObject:PyCompilerFlags*:flags:: 2947 Py_CompileStringObject:int:optimize::
|
/external/python/cpython3/Doc/c-api/ |
D | veryhigh.rst | 271 .. c:function:: PyObject* Py_CompileStringObject(const char *str, PyObject *filename, int start, Py… 292 Like :c:func:`Py_CompileStringObject`, but *filename* is a byte string
|
/external/python/cpython3/Python/ |
D | pythonrun.c | 1083 Py_CompileStringObject(const char *str, PyObject *filename, int start, in Py_CompileStringObject() function 1115 co = Py_CompileStringObject(str, filename, start, flags, optimize); in Py_CompileStringExFlags()
|
D | bltinmodule.c | 878 result = Py_CompileStringObject(str, filename, start[compile_mode], &cf, optimize); in builtin_compile_impl()
|
/external/python/cpython3/Modules/ |
D | zipimport.c | 1440 code = Py_CompileStringObject(PyBytes_AsString(fixed_source), in compile_source()
|