blob: 551846ea6d7205870fb8ceb02eacd9eb4d608fcc [file] [log] [blame]
Stéphane Wirtelcbb64842019-05-17 11:55:34 +02001.. highlight:: c
Georg Brandl116aa622007-08-15 14:28:22 +00002
3
4.. _veryhigh:
5
6*************************
7The Very High Level Layer
8*************************
9
10The functions in this chapter will let you execute Python source code given in a
11file or a buffer, but they will not let you interact in a more detailed way with
12the interpreter.
13
14Several of these functions accept a start symbol from the grammar as a
15parameter. The available start symbols are :const:`Py_eval_input`,
16:const:`Py_file_input`, and :const:`Py_single_input`. These are described
17following the functions which accept them as parameters.
18
Victor Stinner8f881902020-08-19 19:25:22 +020019Note also that several of these functions take :c:type:`FILE*` parameters. One
Georg Brandl60203b42010-10-06 10:11:56 +000020particular issue which needs to be handled carefully is that the :c:type:`FILE`
Georg Brandl116aa622007-08-15 14:28:22 +000021structure for different C libraries can be different and incompatible. Under
22Windows (at least), it is possible for dynamically linked extensions to actually
Victor Stinner8f881902020-08-19 19:25:22 +020023use different libraries, so care should be taken that :c:type:`FILE*` parameters
Georg Brandl116aa622007-08-15 14:28:22 +000024are only passed to these functions if it is certain that they were created by
25the same library that the Python runtime is using.
26
27
Georg Brandl60203b42010-10-06 10:11:56 +000028.. c:function:: int Py_Main(int argc, wchar_t **argv)
Georg Brandl116aa622007-08-15 14:28:22 +000029
Georg Brandl521143d2011-05-15 17:51:24 +020030 The main program for the standard interpreter. This is made available for
31 programs which embed Python. The *argc* and *argv* parameters should be
32 prepared exactly as those which are passed to a C program's :c:func:`main`
33 function (converted to wchar_t according to the user's locale). It is
34 important to note that the argument list may be modified (but the contents of
35 the strings pointed to by the argument list are not). The return value will
36 be ``0`` if the interpreter exits normally (i.e., without an exception),
37 ``1`` if the interpreter exits due to an exception, or ``2`` if the parameter
38 list does not represent a valid Python command line.
Georg Brandl116aa622007-08-15 14:28:22 +000039
Georg Brandl0b2489e2011-05-15 08:49:12 +020040 Note that if an otherwise unhandled :exc:`SystemExit` is raised, this
Benjamin Petersond23f8222009-04-05 19:13:16 +000041 function will not return ``1``, but exit the process, as long as
42 ``Py_InspectFlag`` is not set.
43
Georg Brandl116aa622007-08-15 14:28:22 +000044
Victor Stinner331a6a52019-05-27 16:39:22 +020045.. c:function:: int Py_BytesMain(int argc, char **argv)
46
47 Similar to :c:func:`Py_Main` but *argv* is an array of bytes strings.
48
49 .. versionadded:: 3.8
50
51
Georg Brandl60203b42010-10-06 10:11:56 +000052.. c:function:: int PyRun_AnyFile(FILE *fp, const char *filename)
Georg Brandl116aa622007-08-15 14:28:22 +000053
Georg Brandl60203b42010-10-06 10:11:56 +000054 This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, leaving
Serhiy Storchaka25fc0882019-10-30 12:03:20 +020055 *closeit* set to ``0`` and *flags* set to ``NULL``.
Georg Brandl116aa622007-08-15 14:28:22 +000056
57
Georg Brandl60203b42010-10-06 10:11:56 +000058.. c:function:: int PyRun_AnyFileFlags(FILE *fp, const char *filename, PyCompilerFlags *flags)
Georg Brandl116aa622007-08-15 14:28:22 +000059
Georg Brandl60203b42010-10-06 10:11:56 +000060 This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, leaving
Georg Brandl116aa622007-08-15 14:28:22 +000061 the *closeit* argument set to ``0``.
62
63
Georg Brandl60203b42010-10-06 10:11:56 +000064.. c:function:: int PyRun_AnyFileEx(FILE *fp, const char *filename, int closeit)
Georg Brandl116aa622007-08-15 14:28:22 +000065
Georg Brandl60203b42010-10-06 10:11:56 +000066 This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, leaving
Serhiy Storchaka25fc0882019-10-30 12:03:20 +020067 the *flags* argument set to ``NULL``.
Georg Brandl116aa622007-08-15 14:28:22 +000068
69
Georg Brandl60203b42010-10-06 10:11:56 +000070.. c:function:: int PyRun_AnyFileExFlags(FILE *fp, const char *filename, int closeit, PyCompilerFlags *flags)
Georg Brandl116aa622007-08-15 14:28:22 +000071
72 If *fp* refers to a file associated with an interactive device (console or
73 terminal input or Unix pseudo-terminal), return the value of
Georg Brandl60203b42010-10-06 10:11:56 +000074 :c:func:`PyRun_InteractiveLoop`, otherwise return the result of
Victor Stinner00676d12010-12-27 01:49:31 +000075 :c:func:`PyRun_SimpleFile`. *filename* is decoded from the filesystem
Serhiy Storchaka25fc0882019-10-30 12:03:20 +020076 encoding (:func:`sys.getfilesystemencoding`). If *filename* is ``NULL``, this
Victor Stinner00676d12010-12-27 01:49:31 +000077 function uses ``"???"`` as the filename.
Georg Brandl116aa622007-08-15 14:28:22 +000078
79
Georg Brandl60203b42010-10-06 10:11:56 +000080.. c:function:: int PyRun_SimpleString(const char *command)
Georg Brandl116aa622007-08-15 14:28:22 +000081
Georg Brandl60203b42010-10-06 10:11:56 +000082 This is a simplified interface to :c:func:`PyRun_SimpleStringFlags` below,
Serhiy Storchakae835b312019-10-30 21:37:16 +020083 leaving the :c:type:`PyCompilerFlags`\* argument set to ``NULL``.
Georg Brandl116aa622007-08-15 14:28:22 +000084
85
Georg Brandl60203b42010-10-06 10:11:56 +000086.. c:function:: int PyRun_SimpleStringFlags(const char *command, PyCompilerFlags *flags)
Georg Brandl116aa622007-08-15 14:28:22 +000087
88 Executes the Python source code from *command* in the :mod:`__main__` module
89 according to the *flags* argument. If :mod:`__main__` does not already exist, it
90 is created. Returns ``0`` on success or ``-1`` if an exception was raised. If
91 there was an error, there is no way to get the exception information. For the
92 meaning of *flags*, see below.
93
Georg Brandl0b2489e2011-05-15 08:49:12 +020094 Note that if an otherwise unhandled :exc:`SystemExit` is raised, this
Benjamin Petersond23f8222009-04-05 19:13:16 +000095 function will not return ``-1``, but exit the process, as long as
96 ``Py_InspectFlag`` is not set.
97
Georg Brandl116aa622007-08-15 14:28:22 +000098
Georg Brandl60203b42010-10-06 10:11:56 +000099.. c:function:: int PyRun_SimpleFile(FILE *fp, const char *filename)
Georg Brandl116aa622007-08-15 14:28:22 +0000100
Georg Brandl60203b42010-10-06 10:11:56 +0000101 This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below,
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200102 leaving *closeit* set to ``0`` and *flags* set to ``NULL``.
Georg Brandl116aa622007-08-15 14:28:22 +0000103
104
Georg Brandl60203b42010-10-06 10:11:56 +0000105.. c:function:: int PyRun_SimpleFileEx(FILE *fp, const char *filename, int closeit)
Georg Brandl116aa622007-08-15 14:28:22 +0000106
Georg Brandl60203b42010-10-06 10:11:56 +0000107 This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below,
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200108 leaving *flags* set to ``NULL``.
Georg Brandl116aa622007-08-15 14:28:22 +0000109
110
Georg Brandl60203b42010-10-06 10:11:56 +0000111.. c:function:: int PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit, PyCompilerFlags *flags)
Georg Brandl116aa622007-08-15 14:28:22 +0000112
Georg Brandl60203b42010-10-06 10:11:56 +0000113 Similar to :c:func:`PyRun_SimpleStringFlags`, but the Python source code is read
Victor Stinner00676d12010-12-27 01:49:31 +0000114 from *fp* instead of an in-memory string. *filename* should be the name of
115 the file, it is decoded from the filesystem encoding
116 (:func:`sys.getfilesystemencoding`). If *closeit* is true, the file is
117 closed before PyRun_SimpleFileExFlags returns.
Georg Brandl116aa622007-08-15 14:28:22 +0000118
Inada Naoki10654c12019-04-01 18:35:20 +0900119 .. note::
cocoatomo45585632019-08-18 05:40:23 +0900120 On Windows, *fp* should be opened as binary mode (e.g. ``fopen(filename, "rb")``).
Inada Naoki10654c12019-04-01 18:35:20 +0900121 Otherwise, Python may not handle script file with LF line ending correctly.
122
Georg Brandl116aa622007-08-15 14:28:22 +0000123
Georg Brandl60203b42010-10-06 10:11:56 +0000124.. c:function:: int PyRun_InteractiveOne(FILE *fp, const char *filename)
Georg Brandl116aa622007-08-15 14:28:22 +0000125
Georg Brandl60203b42010-10-06 10:11:56 +0000126 This is a simplified interface to :c:func:`PyRun_InteractiveOneFlags` below,
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200127 leaving *flags* set to ``NULL``.
Georg Brandl116aa622007-08-15 14:28:22 +0000128
129
Georg Brandl60203b42010-10-06 10:11:56 +0000130.. c:function:: int PyRun_InteractiveOneFlags(FILE *fp, const char *filename, PyCompilerFlags *flags)
Georg Brandl116aa622007-08-15 14:28:22 +0000131
Georg Brandl12c695c2010-10-17 11:03:22 +0000132 Read and execute a single statement from a file associated with an
133 interactive device according to the *flags* argument. The user will be
Victor Stinner00676d12010-12-27 01:49:31 +0000134 prompted using ``sys.ps1`` and ``sys.ps2``. *filename* is decoded from the
135 filesystem encoding (:func:`sys.getfilesystemencoding`).
136
137 Returns ``0`` when the input was
Georg Brandl12c695c2010-10-17 11:03:22 +0000138 executed successfully, ``-1`` if there was an exception, or an error code
139 from the :file:`errcode.h` include file distributed as part of Python if
140 there was a parse error. (Note that :file:`errcode.h` is not included by
141 :file:`Python.h`, so must be included specifically if needed.)
Georg Brandl116aa622007-08-15 14:28:22 +0000142
143
Georg Brandl60203b42010-10-06 10:11:56 +0000144.. c:function:: int PyRun_InteractiveLoop(FILE *fp, const char *filename)
Georg Brandl116aa622007-08-15 14:28:22 +0000145
Georg Brandl60203b42010-10-06 10:11:56 +0000146 This is a simplified interface to :c:func:`PyRun_InteractiveLoopFlags` below,
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200147 leaving *flags* set to ``NULL``.
Georg Brandl116aa622007-08-15 14:28:22 +0000148
149
Georg Brandl12c695c2010-10-17 11:03:22 +0000150.. c:function:: int PyRun_InteractiveLoopFlags(FILE *fp, const char *filename, PyCompilerFlags *flags)
Georg Brandl116aa622007-08-15 14:28:22 +0000151
152 Read and execute statements from a file associated with an interactive device
Georg Brandl12c695c2010-10-17 11:03:22 +0000153 until EOF is reached. The user will be prompted using ``sys.ps1`` and
Victor Stinner00676d12010-12-27 01:49:31 +0000154 ``sys.ps2``. *filename* is decoded from the filesystem encoding
xdegayee0582a32017-11-12 16:50:48 +0100155 (:func:`sys.getfilesystemencoding`). Returns ``0`` at EOF or a negative
156 number upon failure.
Georg Brandl116aa622007-08-15 14:28:22 +0000157
158
Andrew Kuchling1e170ba2013-05-28 21:48:28 -0400159.. c:var:: int (*PyOS_InputHook)(void)
160
161 Can be set to point to a function with the prototype
162 ``int func(void)``. The function will be called when Python's
163 interpreter prompt is about to become idle and wait for user input
164 from the terminal. The return value is ignored. Overriding this
165 hook can be used to integrate the interpreter's prompt with other
166 event loops, as done in the :file:`Modules/_tkinter.c` in the
167 Python source code.
168
169
Serhiy Storchakac6792272013-10-19 21:03:34 +0300170.. c:var:: char* (*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *)
Andrew Kuchling1e170ba2013-05-28 21:48:28 -0400171
172 Can be set to point to a function with the prototype
173 ``char *func(FILE *stdin, FILE *stdout, char *prompt)``,
174 overriding the default function used to read a single line of input
175 at the interpreter's prompt. The function is expected to output
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200176 the string *prompt* if it's not ``NULL``, and then read a line of
Andrew Kuchling1e170ba2013-05-28 21:48:28 -0400177 input from the provided standard input file, returning the
178 resulting string. For example, The :mod:`readline` module sets
179 this hook to provide line-editing and tab-completion features.
180
Victor Stinner2fe9bac2013-10-10 16:18:20 +0200181 The result must be a string allocated by :c:func:`PyMem_RawMalloc` or
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200182 :c:func:`PyMem_RawRealloc`, or ``NULL`` if an error occurred.
Victor Stinner2fe9bac2013-10-10 16:18:20 +0200183
184 .. versionchanged:: 3.4
185 The result must be allocated by :c:func:`PyMem_RawMalloc` or
186 :c:func:`PyMem_RawRealloc`, instead of being allocated by
187 :c:func:`PyMem_Malloc` or :c:func:`PyMem_Realloc`.
188
Andrew Kuchling1e170ba2013-05-28 21:48:28 -0400189
Georg Brandl60203b42010-10-06 10:11:56 +0000190.. c:function:: struct _node* PyParser_SimpleParseString(const char *str, int start)
Georg Brandl116aa622007-08-15 14:28:22 +0000191
192 This is a simplified interface to
Georg Brandl60203b42010-10-06 10:11:56 +0000193 :c:func:`PyParser_SimpleParseStringFlagsFilename` below, leaving *filename* set
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200194 to ``NULL`` and *flags* set to ``0``.
Georg Brandl116aa622007-08-15 14:28:22 +0000195
Lysandros Nikolaoud301d942020-06-21 04:15:45 +0300196 .. deprecated-removed:: 3.9 3.10
197
Georg Brandl116aa622007-08-15 14:28:22 +0000198
Georg Brandl60203b42010-10-06 10:11:56 +0000199.. c:function:: struct _node* PyParser_SimpleParseStringFlags( const char *str, int start, int flags)
Georg Brandl116aa622007-08-15 14:28:22 +0000200
201 This is a simplified interface to
Georg Brandl60203b42010-10-06 10:11:56 +0000202 :c:func:`PyParser_SimpleParseStringFlagsFilename` below, leaving *filename* set
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200203 to ``NULL``.
Georg Brandl116aa622007-08-15 14:28:22 +0000204
Lysandros Nikolaoud301d942020-06-21 04:15:45 +0300205 .. deprecated-removed:: 3.9 3.10
206
Georg Brandl116aa622007-08-15 14:28:22 +0000207
Georg Brandl60203b42010-10-06 10:11:56 +0000208.. c:function:: struct _node* PyParser_SimpleParseStringFlagsFilename( const char *str, const char *filename, int start, int flags)
Georg Brandl116aa622007-08-15 14:28:22 +0000209
210 Parse Python source code from *str* using the start token *start* according to
211 the *flags* argument. The result can be used to create a code object which can
212 be evaluated efficiently. This is useful if a code fragment must be evaluated
Victor Stinner00676d12010-12-27 01:49:31 +0000213 many times. *filename* is decoded from the filesystem encoding
214 (:func:`sys.getfilesystemencoding`).
Georg Brandl116aa622007-08-15 14:28:22 +0000215
Lysandros Nikolaoud301d942020-06-21 04:15:45 +0300216 .. deprecated-removed:: 3.9 3.10
217
Georg Brandl116aa622007-08-15 14:28:22 +0000218
Georg Brandl60203b42010-10-06 10:11:56 +0000219.. c:function:: struct _node* PyParser_SimpleParseFile(FILE *fp, const char *filename, int start)
Georg Brandl116aa622007-08-15 14:28:22 +0000220
Georg Brandl60203b42010-10-06 10:11:56 +0000221 This is a simplified interface to :c:func:`PyParser_SimpleParseFileFlags` below,
Martin Panterd21e0b52015-10-10 10:36:22 +0000222 leaving *flags* set to ``0``.
Georg Brandl116aa622007-08-15 14:28:22 +0000223
Lysandros Nikolaoud301d942020-06-21 04:15:45 +0300224 .. deprecated-removed:: 3.9 3.10
225
Georg Brandl116aa622007-08-15 14:28:22 +0000226
Georg Brandl60203b42010-10-06 10:11:56 +0000227.. c:function:: struct _node* PyParser_SimpleParseFileFlags(FILE *fp, const char *filename, int start, int flags)
Georg Brandl116aa622007-08-15 14:28:22 +0000228
Georg Brandl60203b42010-10-06 10:11:56 +0000229 Similar to :c:func:`PyParser_SimpleParseStringFlagsFilename`, but the Python
Georg Brandl116aa622007-08-15 14:28:22 +0000230 source code is read from *fp* instead of an in-memory string.
231
Lysandros Nikolaoud301d942020-06-21 04:15:45 +0300232 .. deprecated-removed:: 3.9 3.10
233
Georg Brandl116aa622007-08-15 14:28:22 +0000234
Georg Brandl60203b42010-10-06 10:11:56 +0000235.. c:function:: PyObject* PyRun_String(const char *str, int start, PyObject *globals, PyObject *locals)
Georg Brandl116aa622007-08-15 14:28:22 +0000236
Georg Brandl60203b42010-10-06 10:11:56 +0000237 This is a simplified interface to :c:func:`PyRun_StringFlags` below, leaving
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200238 *flags* set to ``NULL``.
Georg Brandl116aa622007-08-15 14:28:22 +0000239
240
Georg Brandl60203b42010-10-06 10:11:56 +0000241.. c:function:: PyObject* PyRun_StringFlags(const char *str, int start, PyObject *globals, PyObject *locals, PyCompilerFlags *flags)
Georg Brandl116aa622007-08-15 14:28:22 +0000242
243 Execute Python source code from *str* in the context specified by the
Berker Peksagbd664352016-08-13 05:37:49 +0300244 objects *globals* and *locals* with the compiler flags specified by
245 *flags*. *globals* must be a dictionary; *locals* can be any object
246 that implements the mapping protocol. The parameter *start* specifies
247 the start token that should be used to parse the source code.
Georg Brandl116aa622007-08-15 14:28:22 +0000248
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200249 Returns the result of executing the code as a Python object, or ``NULL`` if an
Georg Brandl116aa622007-08-15 14:28:22 +0000250 exception was raised.
251
252
Georg Brandl60203b42010-10-06 10:11:56 +0000253.. c:function:: PyObject* PyRun_File(FILE *fp, const char *filename, int start, PyObject *globals, PyObject *locals)
Georg Brandl116aa622007-08-15 14:28:22 +0000254
Georg Brandl60203b42010-10-06 10:11:56 +0000255 This is a simplified interface to :c:func:`PyRun_FileExFlags` below, leaving
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200256 *closeit* set to ``0`` and *flags* set to ``NULL``.
Georg Brandl116aa622007-08-15 14:28:22 +0000257
258
Georg Brandl60203b42010-10-06 10:11:56 +0000259.. c:function:: PyObject* PyRun_FileEx(FILE *fp, const char *filename, int start, PyObject *globals, PyObject *locals, int closeit)
Georg Brandl116aa622007-08-15 14:28:22 +0000260
Georg Brandl60203b42010-10-06 10:11:56 +0000261 This is a simplified interface to :c:func:`PyRun_FileExFlags` below, leaving
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200262 *flags* set to ``NULL``.
Georg Brandl116aa622007-08-15 14:28:22 +0000263
264
Georg Brandl60203b42010-10-06 10:11:56 +0000265.. c:function:: PyObject* PyRun_FileFlags(FILE *fp, const char *filename, int start, PyObject *globals, PyObject *locals, PyCompilerFlags *flags)
Georg Brandl116aa622007-08-15 14:28:22 +0000266
Georg Brandl60203b42010-10-06 10:11:56 +0000267 This is a simplified interface to :c:func:`PyRun_FileExFlags` below, leaving
Georg Brandl116aa622007-08-15 14:28:22 +0000268 *closeit* set to ``0``.
269
270
Georg Brandl60203b42010-10-06 10:11:56 +0000271.. c:function:: PyObject* PyRun_FileExFlags(FILE *fp, const char *filename, int start, PyObject *globals, PyObject *locals, int closeit, PyCompilerFlags *flags)
Georg Brandl116aa622007-08-15 14:28:22 +0000272
Georg Brandl60203b42010-10-06 10:11:56 +0000273 Similar to :c:func:`PyRun_StringFlags`, but the Python source code is read from
Victor Stinner00676d12010-12-27 01:49:31 +0000274 *fp* instead of an in-memory string. *filename* should be the name of the file,
275 it is decoded from the filesystem encoding (:func:`sys.getfilesystemencoding`).
Georg Brandl60203b42010-10-06 10:11:56 +0000276 If *closeit* is true, the file is closed before :c:func:`PyRun_FileExFlags`
Georg Brandl116aa622007-08-15 14:28:22 +0000277 returns.
278
279
Georg Brandl60203b42010-10-06 10:11:56 +0000280.. c:function:: PyObject* Py_CompileString(const char *str, const char *filename, int start)
Georg Brandl116aa622007-08-15 14:28:22 +0000281
Georg Brandl60203b42010-10-06 10:11:56 +0000282 This is a simplified interface to :c:func:`Py_CompileStringFlags` below, leaving
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200283 *flags* set to ``NULL``.
Georg Brandl116aa622007-08-15 14:28:22 +0000284
285
Georg Brandl60203b42010-10-06 10:11:56 +0000286.. c:function:: PyObject* Py_CompileStringFlags(const char *str, const char *filename, int start, PyCompilerFlags *flags)
Georg Brandl116aa622007-08-15 14:28:22 +0000287
Georg Brandl8334fd92010-12-04 10:26:46 +0000288 This is a simplified interface to :c:func:`Py_CompileStringExFlags` below, with
289 *optimize* set to ``-1``.
290
291
Victor Stinner14e461d2013-08-26 22:28:21 +0200292.. c:function:: PyObject* Py_CompileStringObject(const char *str, PyObject *filename, int start, PyCompilerFlags *flags, int optimize)
Georg Brandl8334fd92010-12-04 10:26:46 +0000293
Georg Brandl116aa622007-08-15 14:28:22 +0000294 Parse and compile the Python source code in *str*, returning the resulting code
295 object. The start token is given by *start*; this can be used to constrain the
296 code which can be compiled and should be :const:`Py_eval_input`,
297 :const:`Py_file_input`, or :const:`Py_single_input`. The filename specified by
298 *filename* is used to construct the code object and may appear in tracebacks or
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200299 :exc:`SyntaxError` exception messages. This returns ``NULL`` if the code
Victor Stinner14e461d2013-08-26 22:28:21 +0200300 cannot be parsed or compiled.
Georg Brandl116aa622007-08-15 14:28:22 +0000301
Georg Brandl8334fd92010-12-04 10:26:46 +0000302 The integer *optimize* specifies the optimization level of the compiler; a
303 value of ``-1`` selects the optimization level of the interpreter as given by
304 :option:`-O` options. Explicit levels are ``0`` (no optimization;
305 ``__debug__`` is true), ``1`` (asserts are removed, ``__debug__`` is false)
306 or ``2`` (docstrings are removed too).
307
Victor Stinner14e461d2013-08-26 22:28:21 +0200308 .. versionadded:: 3.4
Georg Brandl8334fd92010-12-04 10:26:46 +0000309
Georg Brandl116aa622007-08-15 14:28:22 +0000310
Victor Stinner14e461d2013-08-26 22:28:21 +0200311.. c:function:: PyObject* Py_CompileStringExFlags(const char *str, const char *filename, int start, PyCompilerFlags *flags, int optimize)
312
Berker Peksagab39b092016-09-28 19:35:25 +0300313 Like :c:func:`Py_CompileStringObject`, but *filename* is a byte string
Victor Stinner14e461d2013-08-26 22:28:21 +0200314 decoded from the filesystem encoding (:func:`os.fsdecode`).
315
316 .. versionadded:: 3.2
317
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000318.. c:function:: PyObject* PyEval_EvalCode(PyObject *co, PyObject *globals, PyObject *locals)
Christian Heimesd8654cf2007-12-02 15:22:16 +0000319
Georg Brandl60203b42010-10-06 10:11:56 +0000320 This is a simplified interface to :c:func:`PyEval_EvalCodeEx`, with just
Berker Peksagbd664352016-08-13 05:37:49 +0300321 the code object, and global and local variables. The other arguments are
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200322 set to ``NULL``.
Christian Heimesd8654cf2007-12-02 15:22:16 +0000323
324
Serhiy Storchakaa5552f02017-12-15 13:11:11 +0200325.. c:function:: PyObject* PyEval_EvalCodeEx(PyObject *co, PyObject *globals, PyObject *locals, PyObject *const *args, int argcount, PyObject *const *kws, int kwcount, PyObject *const *defs, int defcount, PyObject *kwdefs, PyObject *closure)
Christian Heimesd8654cf2007-12-02 15:22:16 +0000326
327 Evaluate a precompiled code object, given a particular environment for its
Berker Peksagbd664352016-08-13 05:37:49 +0300328 evaluation. This environment consists of a dictionary of global variables,
329 a mapping object of local variables, arrays of arguments, keywords and
Serhiy Storchaka3f819ca2018-10-31 02:26:06 +0200330 defaults, a dictionary of default values for :ref:`keyword-only
Xiang Zhang6ad85bf2017-01-20 11:29:11 +0800331 <keyword-only_parameter>` arguments and a closure tuple of cells.
Christian Heimesd8654cf2007-12-02 15:22:16 +0000332
333
Brett Cannonabf797d2016-04-15 12:43:50 -0700334.. c:type:: PyFrameObject
335
336 The C structure of the objects used to describe frame objects. The
337 fields of this type are subject to change at any time.
338
339
Georg Brandl60203b42010-10-06 10:11:56 +0000340.. c:function:: PyObject* PyEval_EvalFrame(PyFrameObject *f)
Christian Heimesd8654cf2007-12-02 15:22:16 +0000341
342 Evaluate an execution frame. This is a simplified interface to
Brett Cannonabf797d2016-04-15 12:43:50 -0700343 :c:func:`PyEval_EvalFrameEx`, for backward compatibility.
Christian Heimesd8654cf2007-12-02 15:22:16 +0000344
345
Georg Brandl60203b42010-10-06 10:11:56 +0000346.. c:function:: PyObject* PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
Christian Heimesd8654cf2007-12-02 15:22:16 +0000347
Hai Shi40d22262019-07-14 03:20:57 -0500348 This is the main, unvarnished function of Python interpretation. The code
349 object associated with the execution frame *f* is executed, interpreting
350 bytecode and executing calls as needed. The additional *throwflag*
351 parameter can mostly be ignored - if true, then it causes an exception
352 to immediately be thrown; this is used for the :meth:`~generator.throw`
353 methods of generator objects.
Christian Heimesd8654cf2007-12-02 15:22:16 +0000354
Nick Coghlanc0bc0b42014-02-09 12:00:01 +1000355 .. versionchanged:: 3.4
356 This function now includes a debug assertion to help ensure that it
357 does not silently discard an active exception.
358
Christian Heimesd8654cf2007-12-02 15:22:16 +0000359
Georg Brandl60203b42010-10-06 10:11:56 +0000360.. c:function:: int PyEval_MergeCompilerFlags(PyCompilerFlags *cf)
Christian Heimesd8654cf2007-12-02 15:22:16 +0000361
362 This function changes the flags of the current evaluation frame, and returns
363 true on success, false on failure.
364
365
Georg Brandl60203b42010-10-06 10:11:56 +0000366.. c:var:: int Py_eval_input
Georg Brandl116aa622007-08-15 14:28:22 +0000367
368 .. index:: single: Py_CompileString()
369
370 The start symbol from the Python grammar for isolated expressions; for use with
Georg Brandl60203b42010-10-06 10:11:56 +0000371 :c:func:`Py_CompileString`.
Georg Brandl116aa622007-08-15 14:28:22 +0000372
373
Georg Brandl60203b42010-10-06 10:11:56 +0000374.. c:var:: int Py_file_input
Georg Brandl116aa622007-08-15 14:28:22 +0000375
376 .. index:: single: Py_CompileString()
377
378 The start symbol from the Python grammar for sequences of statements as read
Georg Brandl60203b42010-10-06 10:11:56 +0000379 from a file or other source; for use with :c:func:`Py_CompileString`. This is
Georg Brandl116aa622007-08-15 14:28:22 +0000380 the symbol to use when compiling arbitrarily long Python source code.
381
382
Georg Brandl60203b42010-10-06 10:11:56 +0000383.. c:var:: int Py_single_input
Georg Brandl116aa622007-08-15 14:28:22 +0000384
385 .. index:: single: Py_CompileString()
386
387 The start symbol from the Python grammar for a single statement; for use with
Georg Brandl60203b42010-10-06 10:11:56 +0000388 :c:func:`Py_CompileString`. This is the symbol used for the interactive
Georg Brandl116aa622007-08-15 14:28:22 +0000389 interpreter loop.
390
391
Georg Brandl60203b42010-10-06 10:11:56 +0000392.. c:type:: struct PyCompilerFlags
Georg Brandl116aa622007-08-15 14:28:22 +0000393
394 This is the structure used to hold compiler flags. In cases where code is only
395 being compiled, it is passed as ``int flags``, and in cases where code is being
396 executed, it is passed as ``PyCompilerFlags *flags``. In this case, ``from
397 __future__ import`` can modify *flags*.
398
Serhiy Storchaka25fc0882019-10-30 12:03:20 +0200399 Whenever ``PyCompilerFlags *flags`` is ``NULL``, :attr:`cf_flags` is treated as
Georg Brandl116aa622007-08-15 14:28:22 +0000400 equal to ``0``, and any modification due to ``from __future__ import`` is
Victor Stinner2c9b4982019-06-13 02:01:29 +0200401 discarded.
Georg Brandl116aa622007-08-15 14:28:22 +0000402
Victor Stinner2c9b4982019-06-13 02:01:29 +0200403 .. c:member:: int cf_flags
404
405 Compiler flags.
406
Victor Stinnera04ea4f2019-06-13 02:17:14 +0200407 .. c:member:: int cf_feature_version
Victor Stinner2c9b4982019-06-13 02:01:29 +0200408
409 *cf_feature_version* is the minor Python version. It should be
410 initialized to ``PY_MINOR_VERSION``.
411
412 The field is ignored by default, it is used if and only if
413 ``PyCF_ONLY_AST`` flag is set in *cf_flags*.
414
415 .. versionchanged:: 3.8
416 Added *cf_feature_version* field.
Georg Brandl116aa622007-08-15 14:28:22 +0000417
418
Georg Brandl60203b42010-10-06 10:11:56 +0000419.. c:var:: int CO_FUTURE_DIVISION
Georg Brandl116aa622007-08-15 14:28:22 +0000420
421 This bit can be set in *flags* to cause division operator ``/`` to be
422 interpreted as "true division" according to :pep:`238`.