blob: 26e07160c12a7bde914eda86189ab32018e4ef8d [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001.. highlightlang:: c
2
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
Georg Brandl60203b42010-10-06 10:11:56 +000019Note also that several of these functions take :c:type:`FILE\*` parameters. One
20particular 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
Georg Brandl60203b42010-10-06 10:11:56 +000023use 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
Martin v. Löwis790465f2008-04-05 20:41:37 +000030 The main program for the standard interpreter. This is made
31 available for programs which embed Python. The *argc* and *argv*
32 parameters should be prepared exactly as those which are passed to
Georg Brandl60203b42010-10-06 10:11:56 +000033 a C program's :c:func:`main` function (converted to wchar_t
Martin v. Löwis790465f2008-04-05 20:41:37 +000034 according to the user's locale). It is important to note that the
35 argument list may be modified (but the contents of the strings
36 pointed to by the argument list are not). The return value will be
37 the integer passed to the :func:`sys.exit` function, ``1`` if the
38 interpreter exits due to an exception, or ``2`` if the parameter
39 list does not represent a valid Python command line.
Georg Brandl116aa622007-08-15 14:28:22 +000040
Benjamin Petersond23f8222009-04-05 19:13:16 +000041 Note that if an otherwise unhandled :exc:`SystemError` is raised, this
42 function will not return ``1``, but exit the process, as long as
43 ``Py_InspectFlag`` is not set.
44
Georg Brandl116aa622007-08-15 14:28:22 +000045
Georg Brandl60203b42010-10-06 10:11:56 +000046.. c:function:: int PyRun_AnyFile(FILE *fp, const char *filename)
Georg Brandl116aa622007-08-15 14:28:22 +000047
Georg Brandl60203b42010-10-06 10:11:56 +000048 This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, leaving
Georg Brandl116aa622007-08-15 14:28:22 +000049 *closeit* set to ``0`` and *flags* set to *NULL*.
50
51
Georg Brandl60203b42010-10-06 10:11:56 +000052.. c:function:: int PyRun_AnyFileFlags(FILE *fp, const char *filename, PyCompilerFlags *flags)
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
Georg Brandl116aa622007-08-15 14:28:22 +000055 the *closeit* argument set to ``0``.
56
57
Georg Brandl60203b42010-10-06 10:11:56 +000058.. c:function:: int PyRun_AnyFileEx(FILE *fp, const char *filename, int closeit)
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 *flags* argument set to *NULL*.
62
63
Georg Brandl60203b42010-10-06 10:11:56 +000064.. c:function:: int PyRun_AnyFileExFlags(FILE *fp, const char *filename, int closeit, PyCompilerFlags *flags)
Georg Brandl116aa622007-08-15 14:28:22 +000065
66 If *fp* refers to a file associated with an interactive device (console or
67 terminal input or Unix pseudo-terminal), return the value of
Georg Brandl60203b42010-10-06 10:11:56 +000068 :c:func:`PyRun_InteractiveLoop`, otherwise return the result of
Victor Stinner00676d12010-12-27 01:49:31 +000069 :c:func:`PyRun_SimpleFile`. *filename* is decoded from the filesystem
70 encoding (:func:`sys.getfilesystemencoding`). If *filename* is *NULL*, this
71 function uses ``"???"`` as the filename.
Georg Brandl116aa622007-08-15 14:28:22 +000072
73
Georg Brandl60203b42010-10-06 10:11:56 +000074.. c:function:: int PyRun_SimpleString(const char *command)
Georg Brandl116aa622007-08-15 14:28:22 +000075
Georg Brandl60203b42010-10-06 10:11:56 +000076 This is a simplified interface to :c:func:`PyRun_SimpleStringFlags` below,
Georg Brandl116aa622007-08-15 14:28:22 +000077 leaving the *PyCompilerFlags\** argument set to NULL.
78
79
Georg Brandl60203b42010-10-06 10:11:56 +000080.. c:function:: int PyRun_SimpleStringFlags(const char *command, PyCompilerFlags *flags)
Georg Brandl116aa622007-08-15 14:28:22 +000081
82 Executes the Python source code from *command* in the :mod:`__main__` module
83 according to the *flags* argument. If :mod:`__main__` does not already exist, it
84 is created. Returns ``0`` on success or ``-1`` if an exception was raised. If
85 there was an error, there is no way to get the exception information. For the
86 meaning of *flags*, see below.
87
Benjamin Petersond23f8222009-04-05 19:13:16 +000088 Note that if an otherwise unhandled :exc:`SystemError` is raised, this
89 function will not return ``-1``, but exit the process, as long as
90 ``Py_InspectFlag`` is not set.
91
Georg Brandl116aa622007-08-15 14:28:22 +000092
Georg Brandl60203b42010-10-06 10:11:56 +000093.. c:function:: int PyRun_SimpleFile(FILE *fp, const char *filename)
Georg Brandl116aa622007-08-15 14:28:22 +000094
Georg Brandl60203b42010-10-06 10:11:56 +000095 This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below,
Georg Brandl116aa622007-08-15 14:28:22 +000096 leaving *closeit* set to ``0`` and *flags* set to *NULL*.
97
98
Georg Brandl60203b42010-10-06 10:11:56 +000099.. c:function:: int PyRun_SimpleFileFlags(FILE *fp, const char *filename, PyCompilerFlags *flags)
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,
Georg Brandl116aa622007-08-15 14:28:22 +0000102 leaving *closeit* set to ``0``.
103
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,
Georg Brandl116aa622007-08-15 14:28:22 +0000108 leaving *flags* set to *NULL*.
109
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
119
Georg Brandl60203b42010-10-06 10:11:56 +0000120.. c:function:: int PyRun_InteractiveOne(FILE *fp, const char *filename)
Georg Brandl116aa622007-08-15 14:28:22 +0000121
Georg Brandl60203b42010-10-06 10:11:56 +0000122 This is a simplified interface to :c:func:`PyRun_InteractiveOneFlags` below,
Georg Brandl116aa622007-08-15 14:28:22 +0000123 leaving *flags* set to *NULL*.
124
125
Georg Brandl60203b42010-10-06 10:11:56 +0000126.. c:function:: int PyRun_InteractiveOneFlags(FILE *fp, const char *filename, PyCompilerFlags *flags)
Georg Brandl116aa622007-08-15 14:28:22 +0000127
Georg Brandl12c695c2010-10-17 11:03:22 +0000128 Read and execute a single statement from a file associated with an
129 interactive device according to the *flags* argument. The user will be
Victor Stinner00676d12010-12-27 01:49:31 +0000130 prompted using ``sys.ps1`` and ``sys.ps2``. *filename* is decoded from the
131 filesystem encoding (:func:`sys.getfilesystemencoding`).
132
133 Returns ``0`` when the input was
Georg Brandl12c695c2010-10-17 11:03:22 +0000134 executed successfully, ``-1`` if there was an exception, or an error code
135 from the :file:`errcode.h` include file distributed as part of Python if
136 there was a parse error. (Note that :file:`errcode.h` is not included by
137 :file:`Python.h`, so must be included specifically if needed.)
Georg Brandl116aa622007-08-15 14:28:22 +0000138
139
Georg Brandl60203b42010-10-06 10:11:56 +0000140.. c:function:: int PyRun_InteractiveLoop(FILE *fp, const char *filename)
Georg Brandl116aa622007-08-15 14:28:22 +0000141
Georg Brandl60203b42010-10-06 10:11:56 +0000142 This is a simplified interface to :c:func:`PyRun_InteractiveLoopFlags` below,
Georg Brandl116aa622007-08-15 14:28:22 +0000143 leaving *flags* set to *NULL*.
144
145
Georg Brandl12c695c2010-10-17 11:03:22 +0000146.. c:function:: int PyRun_InteractiveLoopFlags(FILE *fp, const char *filename, PyCompilerFlags *flags)
Georg Brandl116aa622007-08-15 14:28:22 +0000147
148 Read and execute statements from a file associated with an interactive device
Georg Brandl12c695c2010-10-17 11:03:22 +0000149 until EOF is reached. The user will be prompted using ``sys.ps1`` and
Victor Stinner00676d12010-12-27 01:49:31 +0000150 ``sys.ps2``. *filename* is decoded from the filesystem encoding
151 (:func:`sys.getfilesystemencoding`). Returns ``0`` at EOF.
Georg Brandl116aa622007-08-15 14:28:22 +0000152
153
Georg Brandl60203b42010-10-06 10:11:56 +0000154.. c:function:: struct _node* PyParser_SimpleParseString(const char *str, int start)
Georg Brandl116aa622007-08-15 14:28:22 +0000155
156 This is a simplified interface to
Georg Brandl60203b42010-10-06 10:11:56 +0000157 :c:func:`PyParser_SimpleParseStringFlagsFilename` below, leaving *filename* set
Georg Brandl116aa622007-08-15 14:28:22 +0000158 to *NULL* and *flags* set to ``0``.
159
160
Georg Brandl60203b42010-10-06 10:11:56 +0000161.. c:function:: struct _node* PyParser_SimpleParseStringFlags( const char *str, int start, int flags)
Georg Brandl116aa622007-08-15 14:28:22 +0000162
163 This is a simplified interface to
Georg Brandl60203b42010-10-06 10:11:56 +0000164 :c:func:`PyParser_SimpleParseStringFlagsFilename` below, leaving *filename* set
Georg Brandl116aa622007-08-15 14:28:22 +0000165 to *NULL*.
166
167
Georg Brandl60203b42010-10-06 10:11:56 +0000168.. c:function:: struct _node* PyParser_SimpleParseStringFlagsFilename( const char *str, const char *filename, int start, int flags)
Georg Brandl116aa622007-08-15 14:28:22 +0000169
170 Parse Python source code from *str* using the start token *start* according to
171 the *flags* argument. The result can be used to create a code object which can
172 be evaluated efficiently. This is useful if a code fragment must be evaluated
Victor Stinner00676d12010-12-27 01:49:31 +0000173 many times. *filename* is decoded from the filesystem encoding
174 (:func:`sys.getfilesystemencoding`).
Georg Brandl116aa622007-08-15 14:28:22 +0000175
176
Georg Brandl60203b42010-10-06 10:11:56 +0000177.. c:function:: struct _node* PyParser_SimpleParseFile(FILE *fp, const char *filename, int start)
Georg Brandl116aa622007-08-15 14:28:22 +0000178
Georg Brandl60203b42010-10-06 10:11:56 +0000179 This is a simplified interface to :c:func:`PyParser_SimpleParseFileFlags` below,
Georg Brandl116aa622007-08-15 14:28:22 +0000180 leaving *flags* set to ``0``
181
182
Georg Brandl60203b42010-10-06 10:11:56 +0000183.. c:function:: struct _node* PyParser_SimpleParseFileFlags(FILE *fp, const char *filename, int start, int flags)
Georg Brandl116aa622007-08-15 14:28:22 +0000184
Georg Brandl60203b42010-10-06 10:11:56 +0000185 Similar to :c:func:`PyParser_SimpleParseStringFlagsFilename`, but the Python
Georg Brandl116aa622007-08-15 14:28:22 +0000186 source code is read from *fp* instead of an in-memory string.
187
188
Georg Brandl60203b42010-10-06 10:11:56 +0000189.. c:function:: PyObject* PyRun_String(const char *str, int start, PyObject *globals, PyObject *locals)
Georg Brandl116aa622007-08-15 14:28:22 +0000190
Georg Brandl60203b42010-10-06 10:11:56 +0000191 This is a simplified interface to :c:func:`PyRun_StringFlags` below, leaving
Georg Brandl116aa622007-08-15 14:28:22 +0000192 *flags* set to *NULL*.
193
194
Georg Brandl60203b42010-10-06 10:11:56 +0000195.. c:function:: PyObject* PyRun_StringFlags(const char *str, int start, PyObject *globals, PyObject *locals, PyCompilerFlags *flags)
Georg Brandl116aa622007-08-15 14:28:22 +0000196
197 Execute Python source code from *str* in the context specified by the
198 dictionaries *globals* and *locals* with the compiler flags specified by
199 *flags*. The parameter *start* specifies the start token that should be used to
200 parse the source code.
201
202 Returns the result of executing the code as a Python object, or *NULL* if an
203 exception was raised.
204
205
Georg Brandl60203b42010-10-06 10:11:56 +0000206.. c:function:: PyObject* PyRun_File(FILE *fp, const char *filename, int start, PyObject *globals, PyObject *locals)
Georg Brandl116aa622007-08-15 14:28:22 +0000207
Georg Brandl60203b42010-10-06 10:11:56 +0000208 This is a simplified interface to :c:func:`PyRun_FileExFlags` below, leaving
Georg Brandl116aa622007-08-15 14:28:22 +0000209 *closeit* set to ``0`` and *flags* set to *NULL*.
210
211
Georg Brandl60203b42010-10-06 10:11:56 +0000212.. 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 +0000213
Georg Brandl60203b42010-10-06 10:11:56 +0000214 This is a simplified interface to :c:func:`PyRun_FileExFlags` below, leaving
Georg Brandl116aa622007-08-15 14:28:22 +0000215 *flags* set to *NULL*.
216
217
Georg Brandl60203b42010-10-06 10:11:56 +0000218.. 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 +0000219
Georg Brandl60203b42010-10-06 10:11:56 +0000220 This is a simplified interface to :c:func:`PyRun_FileExFlags` below, leaving
Georg Brandl116aa622007-08-15 14:28:22 +0000221 *closeit* set to ``0``.
222
223
Georg Brandl60203b42010-10-06 10:11:56 +0000224.. 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 +0000225
Georg Brandl60203b42010-10-06 10:11:56 +0000226 Similar to :c:func:`PyRun_StringFlags`, but the Python source code is read from
Victor Stinner00676d12010-12-27 01:49:31 +0000227 *fp* instead of an in-memory string. *filename* should be the name of the file,
228 it is decoded from the filesystem encoding (:func:`sys.getfilesystemencoding`).
Georg Brandl60203b42010-10-06 10:11:56 +0000229 If *closeit* is true, the file is closed before :c:func:`PyRun_FileExFlags`
Georg Brandl116aa622007-08-15 14:28:22 +0000230 returns.
231
232
Georg Brandl60203b42010-10-06 10:11:56 +0000233.. c:function:: PyObject* Py_CompileString(const char *str, const char *filename, int start)
Georg Brandl116aa622007-08-15 14:28:22 +0000234
Georg Brandl60203b42010-10-06 10:11:56 +0000235 This is a simplified interface to :c:func:`Py_CompileStringFlags` below, leaving
Georg Brandl116aa622007-08-15 14:28:22 +0000236 *flags* set to *NULL*.
237
238
Georg Brandl60203b42010-10-06 10:11:56 +0000239.. c:function:: PyObject* Py_CompileStringFlags(const char *str, const char *filename, int start, PyCompilerFlags *flags)
Georg Brandl116aa622007-08-15 14:28:22 +0000240
Georg Brandl8334fd92010-12-04 10:26:46 +0000241 This is a simplified interface to :c:func:`Py_CompileStringExFlags` below, with
242 *optimize* set to ``-1``.
243
244
245.. c:function:: PyObject* Py_CompileStringExFlags(const char *str, const char *filename, int start, PyCompilerFlags *flags, int optimize)
246
Georg Brandl116aa622007-08-15 14:28:22 +0000247 Parse and compile the Python source code in *str*, returning the resulting code
248 object. The start token is given by *start*; this can be used to constrain the
249 code which can be compiled and should be :const:`Py_eval_input`,
250 :const:`Py_file_input`, or :const:`Py_single_input`. The filename specified by
251 *filename* is used to construct the code object and may appear in tracebacks or
Victor Stinner00676d12010-12-27 01:49:31 +0000252 :exc:`SyntaxError` exception messages, it is decoded from the filesystem
253 encoding (:func:`sys.getfilesystemencoding`). This returns *NULL* if the
254 code cannot be parsed or compiled.
Georg Brandl116aa622007-08-15 14:28:22 +0000255
Georg Brandl8334fd92010-12-04 10:26:46 +0000256 The integer *optimize* specifies the optimization level of the compiler; a
257 value of ``-1`` selects the optimization level of the interpreter as given by
258 :option:`-O` options. Explicit levels are ``0`` (no optimization;
259 ``__debug__`` is true), ``1`` (asserts are removed, ``__debug__`` is false)
260 or ``2`` (docstrings are removed too).
261
262 .. versionadded:: 3.2
263
Georg Brandl116aa622007-08-15 14:28:22 +0000264
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000265.. c:function:: PyObject* PyEval_EvalCode(PyObject *co, PyObject *globals, PyObject *locals)
Christian Heimesd8654cf2007-12-02 15:22:16 +0000266
Georg Brandl60203b42010-10-06 10:11:56 +0000267 This is a simplified interface to :c:func:`PyEval_EvalCodeEx`, with just
Christian Heimesd8654cf2007-12-02 15:22:16 +0000268 the code object, and the dictionaries of global and local variables.
269 The other arguments are set to *NULL*.
270
271
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000272.. c:function:: PyObject* PyEval_EvalCodeEx(PyObject *co, PyObject *globals, PyObject *locals, PyObject **args, int argcount, PyObject **kws, int kwcount, PyObject **defs, int defcount, PyObject *closure)
Christian Heimesd8654cf2007-12-02 15:22:16 +0000273
274 Evaluate a precompiled code object, given a particular environment for its
275 evaluation. This environment consists of dictionaries of global and local
276 variables, arrays of arguments, keywords and defaults, and a closure tuple of
277 cells.
278
279
Georg Brandl60203b42010-10-06 10:11:56 +0000280.. c:function:: PyObject* PyEval_EvalFrame(PyFrameObject *f)
Christian Heimesd8654cf2007-12-02 15:22:16 +0000281
282 Evaluate an execution frame. This is a simplified interface to
283 PyEval_EvalFrameEx, for backward compatibility.
284
285
Georg Brandl60203b42010-10-06 10:11:56 +0000286.. c:function:: PyObject* PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
Christian Heimesd8654cf2007-12-02 15:22:16 +0000287
288 This is the main, unvarnished function of Python interpretation. It is
289 literally 2000 lines long. The code object associated with the execution
290 frame *f* is executed, interpreting bytecode and executing calls as needed.
291 The additional *throwflag* parameter can mostly be ignored - if true, then
292 it causes an exception to immediately be thrown; this is used for the
293 :meth:`throw` methods of generator objects.
294
295
Georg Brandl60203b42010-10-06 10:11:56 +0000296.. c:function:: int PyEval_MergeCompilerFlags(PyCompilerFlags *cf)
Christian Heimesd8654cf2007-12-02 15:22:16 +0000297
298 This function changes the flags of the current evaluation frame, and returns
299 true on success, false on failure.
300
301
Georg Brandl60203b42010-10-06 10:11:56 +0000302.. c:var:: int Py_eval_input
Georg Brandl116aa622007-08-15 14:28:22 +0000303
304 .. index:: single: Py_CompileString()
305
306 The start symbol from the Python grammar for isolated expressions; for use with
Georg Brandl60203b42010-10-06 10:11:56 +0000307 :c:func:`Py_CompileString`.
Georg Brandl116aa622007-08-15 14:28:22 +0000308
309
Georg Brandl60203b42010-10-06 10:11:56 +0000310.. c:var:: int Py_file_input
Georg Brandl116aa622007-08-15 14:28:22 +0000311
312 .. index:: single: Py_CompileString()
313
314 The start symbol from the Python grammar for sequences of statements as read
Georg Brandl60203b42010-10-06 10:11:56 +0000315 from a file or other source; for use with :c:func:`Py_CompileString`. This is
Georg Brandl116aa622007-08-15 14:28:22 +0000316 the symbol to use when compiling arbitrarily long Python source code.
317
318
Georg Brandl60203b42010-10-06 10:11:56 +0000319.. c:var:: int Py_single_input
Georg Brandl116aa622007-08-15 14:28:22 +0000320
321 .. index:: single: Py_CompileString()
322
323 The start symbol from the Python grammar for a single statement; for use with
Georg Brandl60203b42010-10-06 10:11:56 +0000324 :c:func:`Py_CompileString`. This is the symbol used for the interactive
Georg Brandl116aa622007-08-15 14:28:22 +0000325 interpreter loop.
326
327
Georg Brandl60203b42010-10-06 10:11:56 +0000328.. c:type:: struct PyCompilerFlags
Georg Brandl116aa622007-08-15 14:28:22 +0000329
330 This is the structure used to hold compiler flags. In cases where code is only
331 being compiled, it is passed as ``int flags``, and in cases where code is being
332 executed, it is passed as ``PyCompilerFlags *flags``. In this case, ``from
333 __future__ import`` can modify *flags*.
334
335 Whenever ``PyCompilerFlags *flags`` is *NULL*, :attr:`cf_flags` is treated as
336 equal to ``0``, and any modification due to ``from __future__ import`` is
337 discarded. ::
338
339 struct PyCompilerFlags {
340 int cf_flags;
341 }
342
343
Georg Brandl60203b42010-10-06 10:11:56 +0000344.. c:var:: int CO_FUTURE_DIVISION
Georg Brandl116aa622007-08-15 14:28:22 +0000345
346 This bit can be set in *flags* to cause division operator ``/`` to be
347 interpreted as "true division" according to :pep:`238`.
348