Searched refs:Py_CompileStringObject (Results 1 – 5 of 5) sorted by relevance
/third_party/python/Include/cpython/ |
D | pythonrun.h | 63 PyAPI_FUNC(PyObject *) Py_CompileStringObject(
|
/third_party/python/Doc/data/ |
D | refcounts.dat | 2960 Py_CompileStringObject:PyObject*::+1: 2961 Py_CompileStringObject:const char*:str:: 2962 Py_CompileStringObject:PyObject*:filename:0: 2963 Py_CompileStringObject:int:start:: 2964 Py_CompileStringObject:PyCompilerFlags*:flags:: 2965 Py_CompileStringObject:int:optimize::
|
/third_party/python/Python/ |
D | pythonrun.c | 1361 Py_CompileStringObject(const char *str, PyObject *filename, int start, in Py_CompileStringObject() function 1393 co = Py_CompileStringObject(str, filename, start, flags, optimize); in Py_CompileStringExFlags()
|
D | bltinmodule.c | 840 result = Py_CompileStringObject(str, filename, start[compile_mode], &cf, optimize); in builtin_compile_impl()
|
/third_party/python/Doc/c-api/ |
D | veryhigh.rst | 245 .. c:function:: PyObject* Py_CompileStringObject(const char *str, PyObject *filename, int start, Py… 266 Like :c:func:`Py_CompileStringObject`, but *filename* is a byte string
|