Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | .. highlightlang:: c |
| 2 | |
| 3 | |
| 4 | .. _veryhigh: |
| 5 | |
| 6 | ************************* |
| 7 | The Very High Level Layer |
| 8 | ************************* |
| 9 | |
| 10 | The functions in this chapter will let you execute Python source code given in a |
| 11 | file or a buffer, but they will not let you interact in a more detailed way with |
| 12 | the interpreter. |
| 13 | |
| 14 | Several of these functions accept a start symbol from the grammar as a |
| 15 | parameter. The available start symbols are :const:`Py_eval_input`, |
| 16 | :const:`Py_file_input`, and :const:`Py_single_input`. These are described |
| 17 | following the functions which accept them as parameters. |
| 18 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 19 | Note also that several of these functions take :c:type:`FILE\*` parameters. One |
| 20 | particular issue which needs to be handled carefully is that the :c:type:`FILE` |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 21 | structure for different C libraries can be different and incompatible. Under |
| 22 | Windows (at least), it is possible for dynamically linked extensions to actually |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 23 | use different libraries, so care should be taken that :c:type:`FILE\*` parameters |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 24 | are only passed to these functions if it is certain that they were created by |
| 25 | the same library that the Python runtime is using. |
| 26 | |
| 27 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 28 | .. c:function:: int Py_Main(int argc, wchar_t **argv) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 29 | |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 30 | 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 Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 33 | a C program's :c:func:`main` function (converted to wchar_t |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 34 | 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 |
Georg Brandl | 0b2489e | 2011-05-15 08:49:12 +0200 | [diff] [blame] | 37 | ```0``` if the interpreter exits normally (ie, without an |
| 38 | exception), ``1`` if the interpreter exits due to an exception, or |
| 39 | ``2`` if the parameter list does not represent a valid Python |
| 40 | command line. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 41 | |
Georg Brandl | 0b2489e | 2011-05-15 08:49:12 +0200 | [diff] [blame] | 42 | Note that if an otherwise unhandled :exc:`SystemExit` is raised, this |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 43 | function will not return ``1``, but exit the process, as long as |
| 44 | ``Py_InspectFlag`` is not set. |
| 45 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 46 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 47 | .. c:function:: int PyRun_AnyFile(FILE *fp, const char *filename) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 48 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 49 | This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, leaving |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 50 | *closeit* set to ``0`` and *flags* set to *NULL*. |
| 51 | |
| 52 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 53 | .. c:function:: int PyRun_AnyFileFlags(FILE *fp, const char *filename, PyCompilerFlags *flags) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 54 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 55 | This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, leaving |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 56 | the *closeit* argument set to ``0``. |
| 57 | |
| 58 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 59 | .. c:function:: int PyRun_AnyFileEx(FILE *fp, const char *filename, int closeit) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 60 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 61 | This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, leaving |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 62 | the *flags* argument set to *NULL*. |
| 63 | |
| 64 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 65 | .. c:function:: int PyRun_AnyFileExFlags(FILE *fp, const char *filename, int closeit, PyCompilerFlags *flags) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 66 | |
| 67 | If *fp* refers to a file associated with an interactive device (console or |
| 68 | terminal input or Unix pseudo-terminal), return the value of |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 69 | :c:func:`PyRun_InteractiveLoop`, otherwise return the result of |
Victor Stinner | 00676d1 | 2010-12-27 01:49:31 +0000 | [diff] [blame] | 70 | :c:func:`PyRun_SimpleFile`. *filename* is decoded from the filesystem |
| 71 | encoding (:func:`sys.getfilesystemencoding`). If *filename* is *NULL*, this |
| 72 | function uses ``"???"`` as the filename. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 73 | |
| 74 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 75 | .. c:function:: int PyRun_SimpleString(const char *command) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 76 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 77 | This is a simplified interface to :c:func:`PyRun_SimpleStringFlags` below, |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 78 | leaving the *PyCompilerFlags\** argument set to NULL. |
| 79 | |
| 80 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 81 | .. c:function:: int PyRun_SimpleStringFlags(const char *command, PyCompilerFlags *flags) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 82 | |
| 83 | Executes the Python source code from *command* in the :mod:`__main__` module |
| 84 | according to the *flags* argument. If :mod:`__main__` does not already exist, it |
| 85 | is created. Returns ``0`` on success or ``-1`` if an exception was raised. If |
| 86 | there was an error, there is no way to get the exception information. For the |
| 87 | meaning of *flags*, see below. |
| 88 | |
Georg Brandl | 0b2489e | 2011-05-15 08:49:12 +0200 | [diff] [blame] | 89 | Note that if an otherwise unhandled :exc:`SystemExit` is raised, this |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 90 | function will not return ``-1``, but exit the process, as long as |
| 91 | ``Py_InspectFlag`` is not set. |
| 92 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 93 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 94 | .. c:function:: int PyRun_SimpleFile(FILE *fp, const char *filename) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 95 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 96 | This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 97 | leaving *closeit* set to ``0`` and *flags* set to *NULL*. |
| 98 | |
| 99 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 100 | .. c:function:: int PyRun_SimpleFileFlags(FILE *fp, const char *filename, PyCompilerFlags *flags) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 101 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 102 | This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 103 | leaving *closeit* set to ``0``. |
| 104 | |
| 105 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 106 | .. c:function:: int PyRun_SimpleFileEx(FILE *fp, const char *filename, int closeit) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 107 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 108 | This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 109 | leaving *flags* set to *NULL*. |
| 110 | |
| 111 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 112 | .. c:function:: int PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit, PyCompilerFlags *flags) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 113 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 114 | Similar to :c:func:`PyRun_SimpleStringFlags`, but the Python source code is read |
Victor Stinner | 00676d1 | 2010-12-27 01:49:31 +0000 | [diff] [blame] | 115 | from *fp* instead of an in-memory string. *filename* should be the name of |
| 116 | the file, it is decoded from the filesystem encoding |
| 117 | (:func:`sys.getfilesystemencoding`). If *closeit* is true, the file is |
| 118 | closed before PyRun_SimpleFileExFlags returns. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 119 | |
| 120 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 121 | .. c:function:: int PyRun_InteractiveOne(FILE *fp, const char *filename) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 122 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 123 | This is a simplified interface to :c:func:`PyRun_InteractiveOneFlags` below, |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 124 | leaving *flags* set to *NULL*. |
| 125 | |
| 126 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 127 | .. c:function:: int PyRun_InteractiveOneFlags(FILE *fp, const char *filename, PyCompilerFlags *flags) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 128 | |
Georg Brandl | 12c695c | 2010-10-17 11:03:22 +0000 | [diff] [blame] | 129 | Read and execute a single statement from a file associated with an |
| 130 | interactive device according to the *flags* argument. The user will be |
Victor Stinner | 00676d1 | 2010-12-27 01:49:31 +0000 | [diff] [blame] | 131 | prompted using ``sys.ps1`` and ``sys.ps2``. *filename* is decoded from the |
| 132 | filesystem encoding (:func:`sys.getfilesystemencoding`). |
| 133 | |
| 134 | Returns ``0`` when the input was |
Georg Brandl | 12c695c | 2010-10-17 11:03:22 +0000 | [diff] [blame] | 135 | executed successfully, ``-1`` if there was an exception, or an error code |
| 136 | from the :file:`errcode.h` include file distributed as part of Python if |
| 137 | there was a parse error. (Note that :file:`errcode.h` is not included by |
| 138 | :file:`Python.h`, so must be included specifically if needed.) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 139 | |
| 140 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 141 | .. c:function:: int PyRun_InteractiveLoop(FILE *fp, const char *filename) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 142 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 143 | This is a simplified interface to :c:func:`PyRun_InteractiveLoopFlags` below, |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 144 | leaving *flags* set to *NULL*. |
| 145 | |
| 146 | |
Georg Brandl | 12c695c | 2010-10-17 11:03:22 +0000 | [diff] [blame] | 147 | .. c:function:: int PyRun_InteractiveLoopFlags(FILE *fp, const char *filename, PyCompilerFlags *flags) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 148 | |
| 149 | Read and execute statements from a file associated with an interactive device |
Georg Brandl | 12c695c | 2010-10-17 11:03:22 +0000 | [diff] [blame] | 150 | until EOF is reached. The user will be prompted using ``sys.ps1`` and |
Victor Stinner | 00676d1 | 2010-12-27 01:49:31 +0000 | [diff] [blame] | 151 | ``sys.ps2``. *filename* is decoded from the filesystem encoding |
| 152 | (:func:`sys.getfilesystemencoding`). Returns ``0`` at EOF. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 153 | |
| 154 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 155 | .. c:function:: struct _node* PyParser_SimpleParseString(const char *str, int start) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 156 | |
| 157 | This is a simplified interface to |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 158 | :c:func:`PyParser_SimpleParseStringFlagsFilename` below, leaving *filename* set |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 159 | to *NULL* and *flags* set to ``0``. |
| 160 | |
| 161 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 162 | .. c:function:: struct _node* PyParser_SimpleParseStringFlags( const char *str, int start, int flags) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 163 | |
| 164 | This is a simplified interface to |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 165 | :c:func:`PyParser_SimpleParseStringFlagsFilename` below, leaving *filename* set |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 166 | to *NULL*. |
| 167 | |
| 168 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 169 | .. c:function:: struct _node* PyParser_SimpleParseStringFlagsFilename( const char *str, const char *filename, int start, int flags) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 170 | |
| 171 | Parse Python source code from *str* using the start token *start* according to |
| 172 | the *flags* argument. The result can be used to create a code object which can |
| 173 | be evaluated efficiently. This is useful if a code fragment must be evaluated |
Victor Stinner | 00676d1 | 2010-12-27 01:49:31 +0000 | [diff] [blame] | 174 | many times. *filename* is decoded from the filesystem encoding |
| 175 | (:func:`sys.getfilesystemencoding`). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 176 | |
| 177 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 178 | .. c:function:: struct _node* PyParser_SimpleParseFile(FILE *fp, const char *filename, int start) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 179 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 180 | This is a simplified interface to :c:func:`PyParser_SimpleParseFileFlags` below, |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 181 | leaving *flags* set to ``0`` |
| 182 | |
| 183 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 184 | .. c:function:: struct _node* PyParser_SimpleParseFileFlags(FILE *fp, const char *filename, int start, int flags) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 185 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 186 | Similar to :c:func:`PyParser_SimpleParseStringFlagsFilename`, but the Python |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 187 | source code is read from *fp* instead of an in-memory string. |
| 188 | |
| 189 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 190 | .. c:function:: PyObject* PyRun_String(const char *str, int start, PyObject *globals, PyObject *locals) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 191 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 192 | This is a simplified interface to :c:func:`PyRun_StringFlags` below, leaving |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 193 | *flags* set to *NULL*. |
| 194 | |
| 195 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 196 | .. c:function:: PyObject* PyRun_StringFlags(const char *str, int start, PyObject *globals, PyObject *locals, PyCompilerFlags *flags) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 197 | |
| 198 | Execute Python source code from *str* in the context specified by the |
| 199 | dictionaries *globals* and *locals* with the compiler flags specified by |
| 200 | *flags*. The parameter *start* specifies the start token that should be used to |
| 201 | parse the source code. |
| 202 | |
| 203 | Returns the result of executing the code as a Python object, or *NULL* if an |
| 204 | exception was raised. |
| 205 | |
| 206 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 207 | .. c:function:: PyObject* PyRun_File(FILE *fp, const char *filename, int start, PyObject *globals, PyObject *locals) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 208 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 209 | This is a simplified interface to :c:func:`PyRun_FileExFlags` below, leaving |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 210 | *closeit* set to ``0`` and *flags* set to *NULL*. |
| 211 | |
| 212 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 213 | .. c:function:: PyObject* PyRun_FileEx(FILE *fp, const char *filename, int start, PyObject *globals, PyObject *locals, int closeit) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 214 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 215 | This is a simplified interface to :c:func:`PyRun_FileExFlags` below, leaving |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 216 | *flags* set to *NULL*. |
| 217 | |
| 218 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 219 | .. c:function:: PyObject* PyRun_FileFlags(FILE *fp, const char *filename, int start, PyObject *globals, PyObject *locals, PyCompilerFlags *flags) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 220 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 221 | This is a simplified interface to :c:func:`PyRun_FileExFlags` below, leaving |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 222 | *closeit* set to ``0``. |
| 223 | |
| 224 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 225 | .. c:function:: PyObject* PyRun_FileExFlags(FILE *fp, const char *filename, int start, PyObject *globals, PyObject *locals, int closeit, PyCompilerFlags *flags) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 226 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 227 | Similar to :c:func:`PyRun_StringFlags`, but the Python source code is read from |
Victor Stinner | 00676d1 | 2010-12-27 01:49:31 +0000 | [diff] [blame] | 228 | *fp* instead of an in-memory string. *filename* should be the name of the file, |
| 229 | it is decoded from the filesystem encoding (:func:`sys.getfilesystemencoding`). |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 230 | If *closeit* is true, the file is closed before :c:func:`PyRun_FileExFlags` |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 231 | returns. |
| 232 | |
| 233 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 234 | .. c:function:: PyObject* Py_CompileString(const char *str, const char *filename, int start) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 235 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 236 | This is a simplified interface to :c:func:`Py_CompileStringFlags` below, leaving |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 237 | *flags* set to *NULL*. |
| 238 | |
| 239 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 240 | .. c:function:: PyObject* Py_CompileStringFlags(const char *str, const char *filename, int start, PyCompilerFlags *flags) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 241 | |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 242 | This is a simplified interface to :c:func:`Py_CompileStringExFlags` below, with |
| 243 | *optimize* set to ``-1``. |
| 244 | |
| 245 | |
| 246 | .. c:function:: PyObject* Py_CompileStringExFlags(const char *str, const char *filename, int start, PyCompilerFlags *flags, int optimize) |
| 247 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 248 | Parse and compile the Python source code in *str*, returning the resulting code |
| 249 | object. The start token is given by *start*; this can be used to constrain the |
| 250 | code which can be compiled and should be :const:`Py_eval_input`, |
| 251 | :const:`Py_file_input`, or :const:`Py_single_input`. The filename specified by |
| 252 | *filename* is used to construct the code object and may appear in tracebacks or |
Victor Stinner | 00676d1 | 2010-12-27 01:49:31 +0000 | [diff] [blame] | 253 | :exc:`SyntaxError` exception messages, it is decoded from the filesystem |
| 254 | encoding (:func:`sys.getfilesystemencoding`). This returns *NULL* if the |
| 255 | code cannot be parsed or compiled. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 256 | |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 257 | The integer *optimize* specifies the optimization level of the compiler; a |
| 258 | value of ``-1`` selects the optimization level of the interpreter as given by |
| 259 | :option:`-O` options. Explicit levels are ``0`` (no optimization; |
| 260 | ``__debug__`` is true), ``1`` (asserts are removed, ``__debug__`` is false) |
| 261 | or ``2`` (docstrings are removed too). |
| 262 | |
| 263 | .. versionadded:: 3.2 |
| 264 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 265 | |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 266 | .. c:function:: PyObject* PyEval_EvalCode(PyObject *co, PyObject *globals, PyObject *locals) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 267 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 268 | This is a simplified interface to :c:func:`PyEval_EvalCodeEx`, with just |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 269 | the code object, and the dictionaries of global and local variables. |
| 270 | The other arguments are set to *NULL*. |
| 271 | |
| 272 | |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 273 | .. 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 Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 274 | |
| 275 | Evaluate a precompiled code object, given a particular environment for its |
| 276 | evaluation. This environment consists of dictionaries of global and local |
| 277 | variables, arrays of arguments, keywords and defaults, and a closure tuple of |
| 278 | cells. |
| 279 | |
| 280 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 281 | .. c:function:: PyObject* PyEval_EvalFrame(PyFrameObject *f) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 282 | |
| 283 | Evaluate an execution frame. This is a simplified interface to |
| 284 | PyEval_EvalFrameEx, for backward compatibility. |
| 285 | |
| 286 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 287 | .. c:function:: PyObject* PyEval_EvalFrameEx(PyFrameObject *f, int throwflag) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 288 | |
| 289 | This is the main, unvarnished function of Python interpretation. It is |
| 290 | literally 2000 lines long. The code object associated with the execution |
| 291 | frame *f* is executed, interpreting bytecode and executing calls as needed. |
| 292 | The additional *throwflag* parameter can mostly be ignored - if true, then |
| 293 | it causes an exception to immediately be thrown; this is used for the |
| 294 | :meth:`throw` methods of generator objects. |
| 295 | |
| 296 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 297 | .. c:function:: int PyEval_MergeCompilerFlags(PyCompilerFlags *cf) |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 298 | |
| 299 | This function changes the flags of the current evaluation frame, and returns |
| 300 | true on success, false on failure. |
| 301 | |
| 302 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 303 | .. c:var:: int Py_eval_input |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 304 | |
| 305 | .. index:: single: Py_CompileString() |
| 306 | |
| 307 | The start symbol from the Python grammar for isolated expressions; for use with |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 308 | :c:func:`Py_CompileString`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 309 | |
| 310 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 311 | .. c:var:: int Py_file_input |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 312 | |
| 313 | .. index:: single: Py_CompileString() |
| 314 | |
| 315 | The start symbol from the Python grammar for sequences of statements as read |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 316 | from a file or other source; for use with :c:func:`Py_CompileString`. This is |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 317 | the symbol to use when compiling arbitrarily long Python source code. |
| 318 | |
| 319 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 320 | .. c:var:: int Py_single_input |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 321 | |
| 322 | .. index:: single: Py_CompileString() |
| 323 | |
| 324 | The start symbol from the Python grammar for a single statement; for use with |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 325 | :c:func:`Py_CompileString`. This is the symbol used for the interactive |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 326 | interpreter loop. |
| 327 | |
| 328 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 329 | .. c:type:: struct PyCompilerFlags |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 330 | |
| 331 | This is the structure used to hold compiler flags. In cases where code is only |
| 332 | being compiled, it is passed as ``int flags``, and in cases where code is being |
| 333 | executed, it is passed as ``PyCompilerFlags *flags``. In this case, ``from |
| 334 | __future__ import`` can modify *flags*. |
| 335 | |
| 336 | Whenever ``PyCompilerFlags *flags`` is *NULL*, :attr:`cf_flags` is treated as |
| 337 | equal to ``0``, and any modification due to ``from __future__ import`` is |
| 338 | discarded. :: |
| 339 | |
| 340 | struct PyCompilerFlags { |
| 341 | int cf_flags; |
| 342 | } |
| 343 | |
| 344 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 345 | .. c:var:: int CO_FUTURE_DIVISION |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 346 | |
| 347 | This bit can be set in *flags* to cause division operator ``/`` to be |
| 348 | interpreted as "true division" according to :pep:`238`. |
| 349 | |