Searched refs:Py_CompileString (Results 1 – 13 of 13) sorted by relevance
/third_party/python/Include/ |
D | pythonrun.h | 10 PyAPI_FUNC(PyObject *) Py_CompileString(const char *, const char *, int);
|
/third_party/python/Doc/c-api/ |
D | veryhigh.rst | 233 .. c:function:: PyObject* Py_CompileString(const char *str, const char *filename, int start) 321 .. index:: single: Py_CompileString() 324 :c:func:`Py_CompileString`. 329 .. index:: single: Py_CompileString() 332 from a file or other source; for use with :c:func:`Py_CompileString`. This is 338 .. index:: single: Py_CompileString() 341 :c:func:`Py_CompileString`. This is the symbol used for the interactive
|
/third_party/python/Include/cpython/ |
D | pythonrun.h | 69 #define Py_CompileString(str, p, s) Py_CompileStringExFlags(str, p, s, NULL, -1) macro
|
/third_party/python/Doc/faq/ |
D | extending.rst | 280 :c:func:`Py_CompileString`. If it compiles without errors, try to execute the 343 src = Py_CompileString (code, "<stdin>", Py_single_input);
|
/third_party/python/Python/ |
D | pythonrun.c | 1558 #undef Py_CompileString 1560 Py_CompileString(const char *str, const char *p, int s) in Py_CompileString() function
|
/third_party/python/Doc/data/ |
D | refcounts.dat | 2942 Py_CompileString:PyObject*::+1: 2943 Py_CompileString:const char*:str:: 2944 Py_CompileString:const char*:filename:: 2945 Py_CompileString:int:start::
|
D | stable_abi.dat | 778 function,Py_CompileString,3.2,
|
/third_party/python/PC/ |
D | python3dll.c | 48 EXPORT_FUNC(Py_CompileString)
|
/third_party/python/Lib/test/ |
D | test_capi.py | 636 _compile = _testcapi.Py_CompileString
|
/third_party/python/Doc/whatsnew/ |
D | 3.10.rst | 1934 example, :c:func:`Py_CompileString`. The resulting code object can then be 1940 ``PyNode_Compile`` can be replaced by calling :c:func:`Py_CompileString`. 1944 the file in C and pass the resulting buffer to :c:func:`Py_CompileString`. 1949 :c:func:`PyBytes_AsString` and :c:func:`Py_CompileString`, 1957 code = Py_CompileString(source_buf, filename, Py_file_input);
|
/third_party/python/Misc/ |
D | stable_abi.txt | 1502 function Py_CompileString
|
D | HISTORY | 18244 PyRun_String Py_CompileString
|
/third_party/python/Modules/ |
D | _testcapimodule.c | 403 return Py_CompileString(the_string, "<string>", Py_file_input); in pycompilestring()
|