Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | .. _compound: |
| 2 | |
| 3 | ******************* |
| 4 | Compound statements |
| 5 | ******************* |
| 6 | |
| 7 | .. index:: pair: compound; statement |
| 8 | |
| 9 | Compound statements contain (groups of) other statements; they affect or control |
| 10 | the execution of those other statements in some way. In general, compound |
| 11 | statements span multiple lines, although in simple incarnations a whole compound |
| 12 | statement may be contained in one line. |
| 13 | |
| 14 | The :keyword:`if`, :keyword:`while` and :keyword:`for` statements implement |
| 15 | traditional control flow constructs. :keyword:`try` specifies exception |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 16 | handlers and/or cleanup code for a group of statements, while the |
| 17 | :keyword:`with` statement allows the execution of initialization and |
| 18 | finalization code around a block of code. Function and class definitions are |
| 19 | also syntactically compound statements. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 20 | |
| 21 | .. index:: |
| 22 | single: clause |
| 23 | single: suite |
Serhiy Storchaka | 913876d | 2018-10-28 13:41:26 +0200 | [diff] [blame] | 24 | single: ; (semicolon) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 25 | |
Raymond Hettinger | aa7886d | 2014-05-26 22:20:37 -0700 | [diff] [blame] | 26 | A compound statement consists of one or more 'clauses.' A clause consists of a |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 27 | header and a 'suite.' The clause headers of a particular compound statement are |
| 28 | all at the same indentation level. Each clause header begins with a uniquely |
| 29 | identifying keyword and ends with a colon. A suite is a group of statements |
| 30 | controlled by a clause. A suite can be one or more semicolon-separated simple |
| 31 | statements on the same line as the header, following the header's colon, or it |
| 32 | can be one or more indented statements on subsequent lines. Only the latter |
Raymond Hettinger | aa7886d | 2014-05-26 22:20:37 -0700 | [diff] [blame] | 33 | form of a suite can contain nested compound statements; the following is illegal, |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 34 | mostly because it wouldn't be clear to which :keyword:`if` clause a following |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 35 | :keyword:`else` clause would belong:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 36 | |
Georg Brandl | 6911e3c | 2007-09-04 07:15:32 +0000 | [diff] [blame] | 37 | if test1: if test2: print(x) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 38 | |
| 39 | Also note that the semicolon binds tighter than the colon in this context, so |
Georg Brandl | 6911e3c | 2007-09-04 07:15:32 +0000 | [diff] [blame] | 40 | that in the following example, either all or none of the :func:`print` calls are |
| 41 | executed:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 42 | |
Georg Brandl | 6911e3c | 2007-09-04 07:15:32 +0000 | [diff] [blame] | 43 | if x < y < z: print(x); print(y); print(z) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 44 | |
| 45 | Summarizing: |
| 46 | |
Victor Stinner | 8af239e | 2020-09-18 09:10:15 +0200 | [diff] [blame] | 47 | |
| 48 | .. productionlist:: python-grammar |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 49 | compound_stmt: `if_stmt` |
| 50 | : | `while_stmt` |
| 51 | : | `for_stmt` |
| 52 | : | `try_stmt` |
| 53 | : | `with_stmt` |
| 54 | : | `funcdef` |
| 55 | : | `classdef` |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 56 | : | `async_with_stmt` |
| 57 | : | `async_for_stmt` |
| 58 | : | `async_funcdef` |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 59 | suite: `stmt_list` NEWLINE | NEWLINE INDENT `statement`+ DEDENT |
| 60 | statement: `stmt_list` NEWLINE | `compound_stmt` |
| 61 | stmt_list: `simple_stmt` (";" `simple_stmt`)* [";"] |
| 62 | |
| 63 | .. index:: |
| 64 | single: NEWLINE token |
| 65 | single: DEDENT token |
| 66 | pair: dangling; else |
| 67 | |
| 68 | Note that statements always end in a ``NEWLINE`` possibly followed by a |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 69 | ``DEDENT``. Also note that optional continuation clauses always begin with a |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 70 | keyword that cannot start a statement, thus there are no ambiguities (the |
| 71 | 'dangling :keyword:`else`' problem is solved in Python by requiring nested |
| 72 | :keyword:`if` statements to be indented). |
| 73 | |
| 74 | The formatting of the grammar rules in the following sections places each clause |
| 75 | on a separate line for clarity. |
| 76 | |
| 77 | |
| 78 | .. _if: |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 79 | .. _elif: |
| 80 | .. _else: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 81 | |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 82 | The :keyword:`!if` statement |
| 83 | ============================ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 84 | |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 85 | .. index:: |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 86 | ! statement: if |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 87 | keyword: elif |
| 88 | keyword: else |
Serhiy Storchaka | 913876d | 2018-10-28 13:41:26 +0200 | [diff] [blame] | 89 | single: : (colon); compound statement |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 90 | |
| 91 | The :keyword:`if` statement is used for conditional execution: |
| 92 | |
Victor Stinner | 8af239e | 2020-09-18 09:10:15 +0200 | [diff] [blame] | 93 | .. productionlist:: python-grammar |
Brandt Bucher | 8bae219 | 2020-03-05 21:19:22 -0800 | [diff] [blame] | 94 | if_stmt: "if" `assignment_expression` ":" `suite` |
| 95 | : ("elif" `assignment_expression` ":" `suite`)* |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 96 | : ["else" ":" `suite`] |
| 97 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 98 | It selects exactly one of the suites by evaluating the expressions one by one |
| 99 | until one is found to be true (see section :ref:`booleans` for the definition of |
| 100 | true and false); then that suite is executed (and no other part of the |
| 101 | :keyword:`if` statement is executed or evaluated). If all expressions are |
| 102 | false, the suite of the :keyword:`else` clause, if present, is executed. |
| 103 | |
| 104 | |
| 105 | .. _while: |
| 106 | |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 107 | The :keyword:`!while` statement |
| 108 | =============================== |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 109 | |
| 110 | .. index:: |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 111 | ! statement: while |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 112 | keyword: else |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 113 | pair: loop; statement |
Serhiy Storchaka | 913876d | 2018-10-28 13:41:26 +0200 | [diff] [blame] | 114 | single: : (colon); compound statement |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 115 | |
| 116 | The :keyword:`while` statement is used for repeated execution as long as an |
| 117 | expression is true: |
| 118 | |
Victor Stinner | 8af239e | 2020-09-18 09:10:15 +0200 | [diff] [blame] | 119 | .. productionlist:: python-grammar |
Brandt Bucher | 8bae219 | 2020-03-05 21:19:22 -0800 | [diff] [blame] | 120 | while_stmt: "while" `assignment_expression` ":" `suite` |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 121 | : ["else" ":" `suite`] |
| 122 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 123 | This repeatedly tests the expression and, if it is true, executes the first |
| 124 | suite; if the expression is false (which may be the first time it is tested) the |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 125 | suite of the :keyword:`!else` clause, if present, is executed and the loop |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 126 | terminates. |
| 127 | |
| 128 | .. index:: |
| 129 | statement: break |
| 130 | statement: continue |
| 131 | |
| 132 | A :keyword:`break` statement executed in the first suite terminates the loop |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 133 | without executing the :keyword:`!else` clause's suite. A :keyword:`continue` |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 134 | statement executed in the first suite skips the rest of the suite and goes back |
| 135 | to testing the expression. |
| 136 | |
| 137 | |
| 138 | .. _for: |
| 139 | |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 140 | The :keyword:`!for` statement |
| 141 | ============================= |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 142 | |
| 143 | .. index:: |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 144 | ! statement: for |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 145 | keyword: in |
| 146 | keyword: else |
| 147 | pair: target; list |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 148 | pair: loop; statement |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 149 | object: sequence |
Serhiy Storchaka | 913876d | 2018-10-28 13:41:26 +0200 | [diff] [blame] | 150 | single: : (colon); compound statement |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 151 | |
| 152 | The :keyword:`for` statement is used to iterate over the elements of a sequence |
| 153 | (such as a string, tuple or list) or other iterable object: |
| 154 | |
Victor Stinner | 8af239e | 2020-09-18 09:10:15 +0200 | [diff] [blame] | 155 | .. productionlist:: python-grammar |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 156 | for_stmt: "for" `target_list` "in" `expression_list` ":" `suite` |
| 157 | : ["else" ":" `suite`] |
| 158 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 159 | The expression list is evaluated once; it should yield an iterable object. An |
| 160 | iterator is created for the result of the ``expression_list``. The suite is |
Raymond Hettinger | aa7886d | 2014-05-26 22:20:37 -0700 | [diff] [blame] | 161 | then executed once for each item provided by the iterator, in the order returned |
| 162 | by the iterator. Each item in turn is assigned to the target list using the |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 163 | standard rules for assignments (see :ref:`assignment`), and then the suite is |
| 164 | executed. When the items are exhausted (which is immediately when the sequence |
| 165 | is empty or an iterator raises a :exc:`StopIteration` exception), the suite in |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 166 | the :keyword:`!else` clause, if present, is executed, and the loop terminates. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 167 | |
| 168 | .. index:: |
| 169 | statement: break |
| 170 | statement: continue |
| 171 | |
| 172 | A :keyword:`break` statement executed in the first suite terminates the loop |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 173 | without executing the :keyword:`!else` clause's suite. A :keyword:`continue` |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 174 | statement executed in the first suite skips the rest of the suite and continues |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 175 | with the next item, or with the :keyword:`!else` clause if there is no next |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 176 | item. |
| 177 | |
Andrés Delfino | e42b705 | 2018-07-26 12:35:23 -0300 | [diff] [blame] | 178 | The for-loop makes assignments to the variables in the target list. |
Raymond Hettinger | aa7886d | 2014-05-26 22:20:37 -0700 | [diff] [blame] | 179 | This overwrites all previous assignments to those variables including |
| 180 | those made in the suite of the for-loop:: |
| 181 | |
| 182 | for i in range(10): |
| 183 | print(i) |
| 184 | i = 5 # this will not affect the for-loop |
Zachary Ware | 2f78b84 | 2014-06-03 09:32:40 -0500 | [diff] [blame] | 185 | # because i will be overwritten with the next |
Raymond Hettinger | aa7886d | 2014-05-26 22:20:37 -0700 | [diff] [blame] | 186 | # index in the range |
| 187 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 188 | |
| 189 | .. index:: |
| 190 | builtin: range |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 191 | |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 192 | Names in the target list are not deleted when the loop is finished, but if the |
Raymond Hettinger | aa7886d | 2014-05-26 22:20:37 -0700 | [diff] [blame] | 193 | sequence is empty, they will not have been assigned to at all by the loop. Hint: |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 194 | the built-in function :func:`range` returns an iterator of integers suitable to |
Benjamin Peterson | 3db5e7b | 2009-06-03 03:13:30 +0000 | [diff] [blame] | 195 | emulate the effect of Pascal's ``for i := a to b do``; e.g., ``list(range(3))`` |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 196 | returns the list ``[0, 1, 2]``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 197 | |
Georg Brandl | e720c0a | 2009-04-27 16:20:50 +0000 | [diff] [blame] | 198 | .. note:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 199 | |
| 200 | .. index:: |
| 201 | single: loop; over mutable sequence |
| 202 | single: mutable sequence; loop over |
| 203 | |
| 204 | There is a subtlety when the sequence is being modified by the loop (this can |
Andrés Delfino | 6921ef7 | 2018-07-30 15:44:35 -0300 | [diff] [blame] | 205 | only occur for mutable sequences, e.g. lists). An internal counter is used |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 206 | to keep track of which item is used next, and this is incremented on each |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 207 | iteration. When this counter has reached the length of the sequence the loop |
| 208 | terminates. This means that if the suite deletes the current (or a previous) |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 209 | item from the sequence, the next item will be skipped (since it gets the |
| 210 | index of the current item which has already been treated). Likewise, if the |
| 211 | suite inserts an item in the sequence before the current item, the current |
| 212 | item will be treated again the next time through the loop. This can lead to |
| 213 | nasty bugs that can be avoided by making a temporary copy using a slice of |
| 214 | the whole sequence, e.g., :: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 215 | |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 216 | for x in a[:]: |
| 217 | if x < 0: a.remove(x) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 218 | |
| 219 | |
| 220 | .. _try: |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 221 | .. _except: |
| 222 | .. _finally: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 223 | |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 224 | The :keyword:`!try` statement |
| 225 | ============================= |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 226 | |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 227 | .. index:: |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 228 | ! statement: try |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 229 | keyword: except |
| 230 | keyword: finally |
Serhiy Storchaka | ddb961d | 2018-10-26 09:00:49 +0300 | [diff] [blame] | 231 | keyword: else |
| 232 | keyword: as |
Serhiy Storchaka | 913876d | 2018-10-28 13:41:26 +0200 | [diff] [blame] | 233 | single: : (colon); compound statement |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 234 | |
| 235 | The :keyword:`try` statement specifies exception handlers and/or cleanup code |
| 236 | for a group of statements: |
| 237 | |
Victor Stinner | 8af239e | 2020-09-18 09:10:15 +0200 | [diff] [blame] | 238 | .. productionlist:: python-grammar |
Andrés Delfino | caccca78 | 2018-07-07 17:24:46 -0300 | [diff] [blame] | 239 | try_stmt: `try1_stmt` | `try2_stmt` |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 240 | try1_stmt: "try" ":" `suite` |
Terry Jan Reedy | 65e3ecb | 2014-08-23 19:29:47 -0400 | [diff] [blame] | 241 | : ("except" [`expression` ["as" `identifier`]] ":" `suite`)+ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 242 | : ["else" ":" `suite`] |
| 243 | : ["finally" ":" `suite`] |
| 244 | try2_stmt: "try" ":" `suite` |
| 245 | : "finally" ":" `suite` |
| 246 | |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 247 | |
| 248 | The :keyword:`except` clause(s) specify one or more exception handlers. When no |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 249 | exception occurs in the :keyword:`try` clause, no exception handler is executed. |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 250 | When an exception occurs in the :keyword:`!try` suite, a search for an exception |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 251 | handler is started. This search inspects the except clauses in turn until one |
| 252 | is found that matches the exception. An expression-less except clause, if |
| 253 | present, must be last; it matches any exception. For an except clause with an |
| 254 | expression, that expression is evaluated, and the clause matches the exception |
| 255 | if the resulting object is "compatible" with the exception. An object is |
| 256 | compatible with an exception if it is the class or a base class of the exception |
Colin Watson | c95f8bc | 2020-12-20 18:24:10 +0000 | [diff] [blame] | 257 | object, or a tuple containing an item that is the class or a base class of |
| 258 | the exception object. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 259 | |
| 260 | If no except clause matches the exception, the search for an exception handler |
| 261 | continues in the surrounding code and on the invocation stack. [#]_ |
| 262 | |
| 263 | If the evaluation of an expression in the header of an except clause raises an |
| 264 | exception, the original search for a handler is canceled and a search starts for |
| 265 | the new exception in the surrounding code and on the call stack (it is treated |
| 266 | as if the entire :keyword:`try` statement raised the exception). |
| 267 | |
Serhiy Storchaka | ddb961d | 2018-10-26 09:00:49 +0300 | [diff] [blame] | 268 | .. index:: single: as; except clause |
| 269 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 270 | When a matching except clause is found, the exception is assigned to the target |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 271 | specified after the :keyword:`!as` keyword in that except clause, if present, and |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 272 | the except clause's suite is executed. All except clauses must have an |
| 273 | executable block. When the end of this block is reached, execution continues |
| 274 | normally after the entire try statement. (This means that if two nested |
| 275 | handlers exist for the same exception, and the exception occurs in the try |
| 276 | clause of the inner handler, the outer handler will not handle the exception.) |
| 277 | |
| 278 | When an exception has been assigned using ``as target``, it is cleared at the |
| 279 | end of the except clause. This is as if :: |
| 280 | |
| 281 | except E as N: |
| 282 | foo |
| 283 | |
| 284 | was translated to :: |
| 285 | |
| 286 | except E as N: |
| 287 | try: |
| 288 | foo |
| 289 | finally: |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 290 | del N |
| 291 | |
Benjamin Peterson | fb288da | 2010-06-29 01:27:35 +0000 | [diff] [blame] | 292 | This means the exception must be assigned to a different name to be able to |
| 293 | refer to it after the except clause. Exceptions are cleared because with the |
| 294 | traceback attached to them, they form a reference cycle with the stack frame, |
| 295 | keeping all locals in that frame alive until the next garbage collection occurs. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 296 | |
| 297 | .. index:: |
| 298 | module: sys |
| 299 | object: traceback |
| 300 | |
| 301 | Before an except clause's suite is executed, details about the exception are |
Raymond Hettinger | aa7886d | 2014-05-26 22:20:37 -0700 | [diff] [blame] | 302 | stored in the :mod:`sys` module and can be accessed via :func:`sys.exc_info`. |
Georg Brandl | b30f330 | 2011-01-06 09:23:56 +0000 | [diff] [blame] | 303 | :func:`sys.exc_info` returns a 3-tuple consisting of the exception class, the |
| 304 | exception instance and a traceback object (see section :ref:`types`) identifying |
Géry Ogam | d515c61 | 2020-12-21 14:13:08 +0100 | [diff] [blame] | 305 | the point in the program where the exception occurred. The details about the |
| 306 | exception accessed via :func:`sys.exc_info` are restored to their previous values |
| 307 | when leaving an exception handler:: |
| 308 | |
| 309 | >>> print(sys.exc_info()) |
| 310 | (None, None, None) |
| 311 | >>> try: |
| 312 | ... raise TypeError |
| 313 | ... except: |
| 314 | ... print(sys.exc_info()) |
| 315 | ... try: |
| 316 | ... raise ValueError |
| 317 | ... except: |
| 318 | ... print(sys.exc_info()) |
| 319 | ... print(sys.exc_info()) |
| 320 | ... |
| 321 | (<class 'TypeError'>, TypeError(), <traceback object at 0x10efad080>) |
| 322 | (<class 'ValueError'>, ValueError(), <traceback object at 0x10efad040>) |
| 323 | (<class 'TypeError'>, TypeError(), <traceback object at 0x10efad080>) |
| 324 | >>> print(sys.exc_info()) |
| 325 | (None, None, None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 326 | |
| 327 | .. index:: |
| 328 | keyword: else |
| 329 | statement: return |
| 330 | statement: break |
| 331 | statement: continue |
| 332 | |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 333 | The optional :keyword:`!else` clause is executed if the control flow leaves the |
Andrés Delfino | b086c8a | 2018-11-11 16:33:51 -0300 | [diff] [blame] | 334 | :keyword:`try` suite, no exception was raised, and no :keyword:`return`, |
| 335 | :keyword:`continue`, or :keyword:`break` statement was executed. Exceptions in |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 336 | the :keyword:`!else` clause are not handled by the preceding :keyword:`except` |
Andrés Delfino | b086c8a | 2018-11-11 16:33:51 -0300 | [diff] [blame] | 337 | clauses. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 338 | |
| 339 | .. index:: keyword: finally |
| 340 | |
| 341 | If :keyword:`finally` is present, it specifies a 'cleanup' handler. The |
| 342 | :keyword:`try` clause is executed, including any :keyword:`except` and |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 343 | :keyword:`!else` clauses. If an exception occurs in any of the clauses and is |
| 344 | not handled, the exception is temporarily saved. The :keyword:`!finally` clause |
Mark Dickinson | 05ee581 | 2012-09-24 20:16:38 +0100 | [diff] [blame] | 345 | is executed. If there is a saved exception it is re-raised at the end of the |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 346 | :keyword:`!finally` clause. If the :keyword:`!finally` clause raises another |
Mark Dickinson | 05ee581 | 2012-09-24 20:16:38 +0100 | [diff] [blame] | 347 | exception, the saved exception is set as the context of the new exception. |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 348 | If the :keyword:`!finally` clause executes a :keyword:`return`, :keyword:`break` |
Serhiy Storchaka | fe2bbb1 | 2018-03-18 09:56:52 +0200 | [diff] [blame] | 349 | or :keyword:`continue` statement, the saved exception is discarded:: |
Andrew Svetlov | f158d86 | 2012-08-14 15:38:15 +0300 | [diff] [blame] | 350 | |
Zachary Ware | 9fafc9f | 2014-05-06 09:18:17 -0500 | [diff] [blame] | 351 | >>> def f(): |
| 352 | ... try: |
| 353 | ... 1/0 |
| 354 | ... finally: |
| 355 | ... return 42 |
| 356 | ... |
| 357 | >>> f() |
| 358 | 42 |
Andrew Svetlov | f158d86 | 2012-08-14 15:38:15 +0300 | [diff] [blame] | 359 | |
| 360 | The exception information is not available to the program during execution of |
| 361 | the :keyword:`finally` clause. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 362 | |
| 363 | .. index:: |
| 364 | statement: return |
| 365 | statement: break |
| 366 | statement: continue |
| 367 | |
| 368 | When a :keyword:`return`, :keyword:`break` or :keyword:`continue` statement is |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 369 | executed in the :keyword:`try` suite of a :keyword:`!try`...\ :keyword:`!finally` |
Serhiy Storchaka | fe2bbb1 | 2018-03-18 09:56:52 +0200 | [diff] [blame] | 370 | statement, the :keyword:`finally` clause is also executed 'on the way out.' |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 371 | |
Zachary Ware | 8edd532 | 2014-05-06 09:07:13 -0500 | [diff] [blame] | 372 | The return value of a function is determined by the last :keyword:`return` |
| 373 | statement executed. Since the :keyword:`finally` clause always executes, a |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 374 | :keyword:`!return` statement executed in the :keyword:`!finally` clause will |
Zachary Ware | 8edd532 | 2014-05-06 09:07:13 -0500 | [diff] [blame] | 375 | always be the last one executed:: |
| 376 | |
| 377 | >>> def foo(): |
| 378 | ... try: |
| 379 | ... return 'try' |
| 380 | ... finally: |
| 381 | ... return 'finally' |
| 382 | ... |
| 383 | >>> foo() |
| 384 | 'finally' |
| 385 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 386 | Additional information on exceptions can be found in section :ref:`exceptions`, |
| 387 | and information on using the :keyword:`raise` statement to generate exceptions |
| 388 | may be found in section :ref:`raise`. |
| 389 | |
Serhiy Storchaka | fe2bbb1 | 2018-03-18 09:56:52 +0200 | [diff] [blame] | 390 | .. versionchanged:: 3.8 |
| 391 | Prior to Python 3.8, a :keyword:`continue` statement was illegal in the |
| 392 | :keyword:`finally` clause due to a problem with the implementation. |
| 393 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 394 | |
| 395 | .. _with: |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 396 | .. _as: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 397 | |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 398 | The :keyword:`!with` statement |
| 399 | ============================== |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 400 | |
Terry Jan Reedy | 7c895ed | 2014-04-29 00:58:56 -0400 | [diff] [blame] | 401 | .. index:: |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 402 | ! statement: with |
Serhiy Storchaka | ddb961d | 2018-10-26 09:00:49 +0300 | [diff] [blame] | 403 | keyword: as |
| 404 | single: as; with statement |
Serhiy Storchaka | 913876d | 2018-10-28 13:41:26 +0200 | [diff] [blame] | 405 | single: , (comma); with statement |
| 406 | single: : (colon); compound statement |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 407 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 408 | The :keyword:`with` statement is used to wrap the execution of a block with |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 409 | methods defined by a context manager (see section :ref:`context-managers`). |
| 410 | This allows common :keyword:`try`...\ :keyword:`except`...\ :keyword:`finally` |
| 411 | usage patterns to be encapsulated for convenient reuse. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 412 | |
Victor Stinner | 8af239e | 2020-09-18 09:10:15 +0200 | [diff] [blame] | 413 | .. productionlist:: python-grammar |
Pablo Galindo | 7c8e0b0 | 2021-01-25 23:15:51 +0000 | [diff] [blame^] | 414 | with_stmt: "with" ( "(" `with_stmt_contents` ","? ")" | `with_stmt_contents` ) ":" `suite` |
| 415 | with_stmt_contents: `with_item` ("," `with_item`)* |
Georg Brandl | 0c31562 | 2009-05-25 21:10:36 +0000 | [diff] [blame] | 416 | with_item: `expression` ["as" `target`] |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 417 | |
Georg Brandl | 0c31562 | 2009-05-25 21:10:36 +0000 | [diff] [blame] | 418 | The execution of the :keyword:`with` statement with one "item" proceeds as follows: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 419 | |
Georg Brandl | 3387f48 | 2010-09-03 22:40:02 +0000 | [diff] [blame] | 420 | #. The context expression (the expression given in the :token:`with_item`) is |
| 421 | evaluated to obtain a context manager. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 422 | |
Géry Ogam | 226e6e7 | 2019-12-30 05:24:51 +0000 | [diff] [blame] | 423 | #. The context manager's :meth:`__enter__` is loaded for later use. |
| 424 | |
Benjamin Peterson | 876b2f2 | 2009-06-28 03:18:59 +0000 | [diff] [blame] | 425 | #. The context manager's :meth:`__exit__` is loaded for later use. |
| 426 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 427 | #. The context manager's :meth:`__enter__` method is invoked. |
| 428 | |
| 429 | #. If a target was included in the :keyword:`with` statement, the return value |
| 430 | from :meth:`__enter__` is assigned to it. |
| 431 | |
| 432 | .. note:: |
| 433 | |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 434 | The :keyword:`with` statement guarantees that if the :meth:`__enter__` |
| 435 | method returns without an error, then :meth:`__exit__` will always be |
Benjamin Peterson | 876b2f2 | 2009-06-28 03:18:59 +0000 | [diff] [blame] | 436 | called. Thus, if an error occurs during the assignment to the target list, |
| 437 | it will be treated the same as an error occurring within the suite would |
| 438 | be. See step 6 below. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 439 | |
| 440 | #. The suite is executed. |
| 441 | |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 442 | #. The context manager's :meth:`__exit__` method is invoked. If an exception |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 443 | caused the suite to be exited, its type, value, and traceback are passed as |
| 444 | arguments to :meth:`__exit__`. Otherwise, three :const:`None` arguments are |
| 445 | supplied. |
| 446 | |
| 447 | If the suite was exited due to an exception, and the return value from the |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 448 | :meth:`__exit__` method was false, the exception is reraised. If the return |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 449 | value was true, the exception is suppressed, and execution continues with the |
| 450 | statement following the :keyword:`with` statement. |
| 451 | |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 452 | If the suite was exited for any reason other than an exception, the return |
| 453 | value from :meth:`__exit__` is ignored, and execution proceeds at the normal |
| 454 | location for the kind of exit that was taken. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 455 | |
Géry Ogam | 226e6e7 | 2019-12-30 05:24:51 +0000 | [diff] [blame] | 456 | The following code:: |
| 457 | |
| 458 | with EXPRESSION as TARGET: |
| 459 | SUITE |
| 460 | |
| 461 | is semantically equivalent to:: |
| 462 | |
| 463 | manager = (EXPRESSION) |
| 464 | enter = type(manager).__enter__ |
| 465 | exit = type(manager).__exit__ |
| 466 | value = enter(manager) |
| 467 | hit_except = False |
| 468 | |
| 469 | try: |
| 470 | TARGET = value |
| 471 | SUITE |
| 472 | except: |
| 473 | hit_except = True |
| 474 | if not exit(manager, *sys.exc_info()): |
| 475 | raise |
| 476 | finally: |
| 477 | if not hit_except: |
| 478 | exit(manager, None, None, None) |
| 479 | |
Georg Brandl | 0c31562 | 2009-05-25 21:10:36 +0000 | [diff] [blame] | 480 | With more than one item, the context managers are processed as if multiple |
| 481 | :keyword:`with` statements were nested:: |
| 482 | |
| 483 | with A() as a, B() as b: |
Géry Ogam | 226e6e7 | 2019-12-30 05:24:51 +0000 | [diff] [blame] | 484 | SUITE |
Georg Brandl | 0c31562 | 2009-05-25 21:10:36 +0000 | [diff] [blame] | 485 | |
Géry Ogam | 226e6e7 | 2019-12-30 05:24:51 +0000 | [diff] [blame] | 486 | is semantically equivalent to:: |
Georg Brandl | 0c31562 | 2009-05-25 21:10:36 +0000 | [diff] [blame] | 487 | |
| 488 | with A() as a: |
| 489 | with B() as b: |
Géry Ogam | 226e6e7 | 2019-12-30 05:24:51 +0000 | [diff] [blame] | 490 | SUITE |
Georg Brandl | 0c31562 | 2009-05-25 21:10:36 +0000 | [diff] [blame] | 491 | |
Pablo Galindo | 7c8e0b0 | 2021-01-25 23:15:51 +0000 | [diff] [blame^] | 492 | You can also write multi-item context managers in multiple lines if |
| 493 | the items are surrounded by parentheses. For example:: |
| 494 | |
| 495 | with ( |
| 496 | A() as a, |
| 497 | B() as b, |
| 498 | ): |
| 499 | SUITE |
| 500 | |
Georg Brandl | 0c31562 | 2009-05-25 21:10:36 +0000 | [diff] [blame] | 501 | .. versionchanged:: 3.1 |
| 502 | Support for multiple context expressions. |
| 503 | |
Pablo Galindo | 7c8e0b0 | 2021-01-25 23:15:51 +0000 | [diff] [blame^] | 504 | .. versionchanged:: 3.10 |
| 505 | Support for using grouping parentheses to break the statement in multiple lines. |
| 506 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 507 | .. seealso:: |
| 508 | |
Serhiy Storchaka | e4ba872 | 2016-03-31 15:30:54 +0300 | [diff] [blame] | 509 | :pep:`343` - The "with" statement |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 510 | The specification, background, and examples for the Python :keyword:`with` |
| 511 | statement. |
| 512 | |
| 513 | |
Chris Jerdonek | b430994 | 2012-12-25 14:54:44 -0800 | [diff] [blame] | 514 | .. index:: |
| 515 | single: parameter; function definition |
| 516 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 517 | .. _function: |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 518 | .. _def: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 519 | |
| 520 | Function definitions |
| 521 | ==================== |
| 522 | |
| 523 | .. index:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 524 | statement: def |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 525 | pair: function; definition |
| 526 | pair: function; name |
| 527 | pair: name; binding |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 528 | object: user-defined function |
| 529 | object: function |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 530 | pair: function; name |
| 531 | pair: name; binding |
Serhiy Storchaka | 913876d | 2018-10-28 13:41:26 +0200 | [diff] [blame] | 532 | single: () (parentheses); function definition |
| 533 | single: , (comma); parameter list |
| 534 | single: : (colon); compound statement |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 535 | |
| 536 | A function definition defines a user-defined function object (see section |
| 537 | :ref:`types`): |
| 538 | |
Victor Stinner | 8af239e | 2020-09-18 09:10:15 +0200 | [diff] [blame] | 539 | .. productionlist:: python-grammar |
Andrés Delfino | caccca78 | 2018-07-07 17:24:46 -0300 | [diff] [blame] | 540 | funcdef: [`decorators`] "def" `funcname` "(" [`parameter_list`] ")" |
| 541 | : ["->" `expression`] ":" `suite` |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 542 | decorators: `decorator`+ |
Brandt Bucher | 8f13053 | 2020-03-07 10:23:49 -0800 | [diff] [blame] | 543 | decorator: "@" `assignment_expression` NEWLINE |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 544 | dotted_name: `identifier` ("." `identifier`)* |
Pablo Galindo | 29cb21d | 2019-05-29 22:59:00 +0100 | [diff] [blame] | 545 | parameter_list: `defparameter` ("," `defparameter`)* "," "/" ["," [`parameter_list_no_posonly`]] |
Pablo Galindo | b76302d | 2019-05-29 00:45:32 +0100 | [diff] [blame] | 546 | : | `parameter_list_no_posonly` |
| 547 | parameter_list_no_posonly: `defparameter` ("," `defparameter`)* ["," [`parameter_list_starargs`]] |
| 548 | : | `parameter_list_starargs` |
Robert Collins | df39599 | 2015-08-12 08:00:06 +1200 | [diff] [blame] | 549 | parameter_list_starargs: "*" [`parameter`] ("," `defparameter`)* ["," ["**" `parameter` [","]]] |
Andrés Delfino | caccca78 | 2018-07-07 17:24:46 -0300 | [diff] [blame] | 550 | : | "**" `parameter` [","] |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 551 | parameter: `identifier` [":" `expression`] |
| 552 | defparameter: `parameter` ["=" `expression`] |
| 553 | funcname: `identifier` |
| 554 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 555 | |
| 556 | A function definition is an executable statement. Its execution binds the |
| 557 | function name in the current local namespace to a function object (a wrapper |
| 558 | around the executable code for the function). This function object contains a |
| 559 | reference to the current global namespace as the global namespace to be used |
| 560 | when the function is called. |
| 561 | |
| 562 | The function definition does not execute the function body; this gets executed |
Georg Brandl | 3dbca81 | 2008-07-23 16:10:53 +0000 | [diff] [blame] | 563 | only when the function is called. [#]_ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 564 | |
Christian Heimes | dae2a89 | 2008-04-19 00:55:37 +0000 | [diff] [blame] | 565 | .. index:: |
Serhiy Storchaka | 913876d | 2018-10-28 13:41:26 +0200 | [diff] [blame] | 566 | single: @ (at); function definition |
Christian Heimes | dae2a89 | 2008-04-19 00:55:37 +0000 | [diff] [blame] | 567 | |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 568 | A function definition may be wrapped by one or more :term:`decorator` expressions. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 569 | Decorator expressions are evaluated when the function is defined, in the scope |
| 570 | that contains the function definition. The result must be a callable, which is |
| 571 | invoked with the function object as the only argument. The returned value is |
| 572 | bound to the function name instead of the function object. Multiple decorators |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 573 | are applied in nested fashion. For example, the following code :: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 574 | |
| 575 | @f1(arg) |
| 576 | @f2 |
| 577 | def func(): pass |
| 578 | |
Berker Peksag | 6cafece | 2016-08-03 10:17:21 +0300 | [diff] [blame] | 579 | is roughly equivalent to :: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 580 | |
| 581 | def func(): pass |
| 582 | func = f1(arg)(f2(func)) |
| 583 | |
Berker Peksag | 6cafece | 2016-08-03 10:17:21 +0300 | [diff] [blame] | 584 | except that the original function is not temporarily bound to the name ``func``. |
| 585 | |
Brandt Bucher | 8f13053 | 2020-03-07 10:23:49 -0800 | [diff] [blame] | 586 | .. versionchanged:: 3.9 |
| 587 | Functions may be decorated with any valid :token:`assignment_expression`. |
| 588 | Previously, the grammar was much more restrictive; see :pep:`614` for |
| 589 | details. |
| 590 | |
Chris Jerdonek | b430994 | 2012-12-25 14:54:44 -0800 | [diff] [blame] | 591 | .. index:: |
| 592 | triple: default; parameter; value |
| 593 | single: argument; function definition |
Serhiy Storchaka | 913876d | 2018-10-28 13:41:26 +0200 | [diff] [blame] | 594 | single: = (equals); function definition |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 595 | |
Chris Jerdonek | b430994 | 2012-12-25 14:54:44 -0800 | [diff] [blame] | 596 | When one or more :term:`parameters <parameter>` have the form *parameter* ``=`` |
| 597 | *expression*, the function is said to have "default parameter values." For a |
| 598 | parameter with a default value, the corresponding :term:`argument` may be |
| 599 | omitted from a call, in which |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 600 | case the parameter's default value is substituted. If a parameter has a default |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 601 | value, all following parameters up until the "``*``" must also have a default |
| 602 | value --- this is a syntactic restriction that is not expressed by the grammar. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 603 | |
Benjamin Peterson | 1ef876c | 2013-02-10 09:29:59 -0500 | [diff] [blame] | 604 | **Default parameter values are evaluated from left to right when the function |
| 605 | definition is executed.** This means that the expression is evaluated once, when |
| 606 | the function is defined, and that the same "pre-computed" value is used for each |
Andre Delfino | b9f6ac9 | 2020-07-22 20:58:19 -0300 | [diff] [blame] | 607 | call. This is especially important to understand when a default parameter value is a |
Benjamin Peterson | 1ef876c | 2013-02-10 09:29:59 -0500 | [diff] [blame] | 608 | mutable object, such as a list or a dictionary: if the function modifies the |
Andre Delfino | b9f6ac9 | 2020-07-22 20:58:19 -0300 | [diff] [blame] | 609 | object (e.g. by appending an item to a list), the default parameter value is in effect |
Benjamin Peterson | 1ef876c | 2013-02-10 09:29:59 -0500 | [diff] [blame] | 610 | modified. This is generally not what was intended. A way around this is to use |
| 611 | ``None`` as the default, and explicitly test for it in the body of the function, |
| 612 | e.g.:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 613 | |
| 614 | def whats_on_the_telly(penguin=None): |
| 615 | if penguin is None: |
| 616 | penguin = [] |
| 617 | penguin.append("property of the zoo") |
| 618 | return penguin |
| 619 | |
Christian Heimes | dae2a89 | 2008-04-19 00:55:37 +0000 | [diff] [blame] | 620 | .. index:: |
Serhiy Storchaka | 913876d | 2018-10-28 13:41:26 +0200 | [diff] [blame] | 621 | single: * (asterisk); function definition |
Serhiy Storchaka | ddb961d | 2018-10-26 09:00:49 +0300 | [diff] [blame] | 622 | single: **; function definition |
Christian Heimes | dae2a89 | 2008-04-19 00:55:37 +0000 | [diff] [blame] | 623 | |
| 624 | Function call semantics are described in more detail in section :ref:`calls`. A |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 625 | function call always assigns values to all parameters mentioned in the parameter |
| 626 | list, either from position arguments, from keyword arguments, or from default |
| 627 | values. If the form "``*identifier``" is present, it is initialized to a tuple |
Eric Snow | b957b0c | 2016-09-08 13:59:58 -0700 | [diff] [blame] | 628 | receiving any excess positional parameters, defaulting to the empty tuple. |
| 629 | If the form "``**identifier``" is present, it is initialized to a new |
| 630 | ordered mapping receiving any excess keyword arguments, defaulting to a |
| 631 | new empty mapping of the same type. Parameters after "``*``" or |
| 632 | "``*identifier``" are keyword-only parameters and may only be passed |
| 633 | used keyword arguments. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 634 | |
Serhiy Storchaka | ddb961d | 2018-10-26 09:00:49 +0300 | [diff] [blame] | 635 | .. index:: |
| 636 | pair: function; annotations |
| 637 | single: ->; function annotations |
Serhiy Storchaka | 913876d | 2018-10-28 13:41:26 +0200 | [diff] [blame] | 638 | single: : (colon); function annotations |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 639 | |
Cheryl Sabella | b7105c9 | 2018-12-24 00:09:09 -0500 | [diff] [blame] | 640 | Parameters may have an :term:`annotation <function annotation>` of the form "``: expression``" |
| 641 | following the parameter name. Any parameter may have an annotation, even those of the form |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 642 | ``*identifier`` or ``**identifier``. Functions may have "return" annotation of |
| 643 | the form "``-> expression``" after the parameter list. These annotations can be |
Guido van Rossum | 95e4d58 | 2018-01-26 08:20:18 -0800 | [diff] [blame] | 644 | any valid Python expression. The presence of annotations does not change the |
Batuhan Taskaya | 044a104 | 2020-10-06 23:03:02 +0300 | [diff] [blame] | 645 | semantics of a function. The annotation values are available as string values |
| 646 | in a dictionary keyed by the parameters' names in the :attr:`__annotations__` |
| 647 | attribute of the function object. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 648 | |
Georg Brandl | 242e6a0 | 2013-10-06 10:28:39 +0200 | [diff] [blame] | 649 | .. index:: pair: lambda; expression |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 650 | |
| 651 | It is also possible to create anonymous functions (functions not bound to a |
Georg Brandl | 242e6a0 | 2013-10-06 10:28:39 +0200 | [diff] [blame] | 652 | name), for immediate use in expressions. This uses lambda expressions, described in |
| 653 | section :ref:`lambda`. Note that the lambda expression is merely a shorthand for a |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 654 | simplified function definition; a function defined in a ":keyword:`def`" |
| 655 | statement can be passed around or assigned to another name just like a function |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 656 | defined by a lambda expression. The ":keyword:`!def`" form is actually more powerful |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 657 | since it allows the execution of multiple statements and annotations. |
| 658 | |
Georg Brandl | 242e6a0 | 2013-10-06 10:28:39 +0200 | [diff] [blame] | 659 | **Programmer's note:** Functions are first-class objects. A "``def``" statement |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 660 | executed inside a function definition defines a local function that can be |
| 661 | returned or passed around. Free variables used in the nested function can |
| 662 | access the local variables of the function containing the def. See section |
| 663 | :ref:`naming` for details. |
| 664 | |
Georg Brandl | 64a4094 | 2012-03-10 09:22:47 +0100 | [diff] [blame] | 665 | .. seealso:: |
| 666 | |
| 667 | :pep:`3107` - Function Annotations |
| 668 | The original specification for function annotations. |
| 669 | |
Guido van Rossum | 95e4d58 | 2018-01-26 08:20:18 -0800 | [diff] [blame] | 670 | :pep:`484` - Type Hints |
| 671 | Definition of a standard meaning for annotations: type hints. |
| 672 | |
| 673 | :pep:`526` - Syntax for Variable Annotations |
| 674 | Ability to type hint variable declarations, including class |
| 675 | variables and instance variables |
| 676 | |
| 677 | :pep:`563` - Postponed Evaluation of Annotations |
| 678 | Support for forward references within annotations by preserving |
| 679 | annotations in a string form at runtime instead of eager evaluation. |
| 680 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 681 | |
| 682 | .. _class: |
| 683 | |
| 684 | Class definitions |
| 685 | ================= |
| 686 | |
| 687 | .. index:: |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 688 | object: class |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 689 | statement: class |
| 690 | pair: class; definition |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 691 | pair: class; name |
| 692 | pair: name; binding |
| 693 | pair: execution; frame |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 694 | single: inheritance |
Georg Brandl | 3dbca81 | 2008-07-23 16:10:53 +0000 | [diff] [blame] | 695 | single: docstring |
Serhiy Storchaka | 913876d | 2018-10-28 13:41:26 +0200 | [diff] [blame] | 696 | single: () (parentheses); class definition |
| 697 | single: , (comma); expression list |
| 698 | single: : (colon); compound statement |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 699 | |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 700 | A class definition defines a class object (see section :ref:`types`): |
| 701 | |
Victor Stinner | 8af239e | 2020-09-18 09:10:15 +0200 | [diff] [blame] | 702 | .. productionlist:: python-grammar |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 703 | classdef: [`decorators`] "class" `classname` [`inheritance`] ":" `suite` |
Benjamin Peterson | 54044d6 | 2016-05-16 23:20:22 -0700 | [diff] [blame] | 704 | inheritance: "(" [`argument_list`] ")" |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 705 | classname: `identifier` |
| 706 | |
Georg Brandl | 65e5f80 | 2010-08-02 18:10:13 +0000 | [diff] [blame] | 707 | A class definition is an executable statement. The inheritance list usually |
| 708 | gives a list of base classes (see :ref:`metaclasses` for more advanced uses), so |
| 709 | each item in the list should evaluate to a class object which allows |
Éric Araujo | 28053fb | 2010-11-22 03:09:19 +0000 | [diff] [blame] | 710 | subclassing. Classes without an inheritance list inherit, by default, from the |
| 711 | base class :class:`object`; hence, :: |
| 712 | |
| 713 | class Foo: |
| 714 | pass |
| 715 | |
| 716 | is equivalent to :: |
| 717 | |
| 718 | class Foo(object): |
| 719 | pass |
Georg Brandl | 65e5f80 | 2010-08-02 18:10:13 +0000 | [diff] [blame] | 720 | |
| 721 | The class's suite is then executed in a new execution frame (see :ref:`naming`), |
| 722 | using a newly created local namespace and the original global namespace. |
| 723 | (Usually, the suite contains mostly function definitions.) When the class's |
| 724 | suite finishes execution, its execution frame is discarded but its local |
| 725 | namespace is saved. [#]_ A class object is then created using the inheritance |
| 726 | list for the base classes and the saved local namespace for the attribute |
| 727 | dictionary. The class name is bound to this class object in the original local |
| 728 | namespace. |
| 729 | |
Eric Snow | 92a6c17 | 2016-09-05 14:50:11 -0700 | [diff] [blame] | 730 | The order in which attributes are defined in the class body is preserved |
Eric Snow | 4f29e75 | 2016-09-08 15:11:11 -0700 | [diff] [blame] | 731 | in the new class's ``__dict__``. Note that this is reliable only right |
| 732 | after the class is created and only for classes that were defined using |
| 733 | the definition syntax. |
Eric Snow | 92a6c17 | 2016-09-05 14:50:11 -0700 | [diff] [blame] | 734 | |
Georg Brandl | 65e5f80 | 2010-08-02 18:10:13 +0000 | [diff] [blame] | 735 | Class creation can be customized heavily using :ref:`metaclasses <metaclasses>`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 736 | |
Serhiy Storchaka | ddb961d | 2018-10-26 09:00:49 +0300 | [diff] [blame] | 737 | .. index:: |
Serhiy Storchaka | 913876d | 2018-10-28 13:41:26 +0200 | [diff] [blame] | 738 | single: @ (at); class definition |
Serhiy Storchaka | ddb961d | 2018-10-26 09:00:49 +0300 | [diff] [blame] | 739 | |
Georg Brandl | f414272 | 2010-10-17 10:38:20 +0000 | [diff] [blame] | 740 | Classes can also be decorated: just like when decorating functions, :: |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 741 | |
| 742 | @f1(arg) |
| 743 | @f2 |
| 744 | class Foo: pass |
| 745 | |
Berker Peksag | 6cafece | 2016-08-03 10:17:21 +0300 | [diff] [blame] | 746 | is roughly equivalent to :: |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 747 | |
| 748 | class Foo: pass |
| 749 | Foo = f1(arg)(f2(Foo)) |
| 750 | |
Georg Brandl | f414272 | 2010-10-17 10:38:20 +0000 | [diff] [blame] | 751 | The evaluation rules for the decorator expressions are the same as for function |
Berker Peksag | 6cafece | 2016-08-03 10:17:21 +0300 | [diff] [blame] | 752 | decorators. The result is then bound to the class name. |
Georg Brandl | f414272 | 2010-10-17 10:38:20 +0000 | [diff] [blame] | 753 | |
Brandt Bucher | 8f13053 | 2020-03-07 10:23:49 -0800 | [diff] [blame] | 754 | .. versionchanged:: 3.9 |
| 755 | Classes may be decorated with any valid :token:`assignment_expression`. |
| 756 | Previously, the grammar was much more restrictive; see :pep:`614` for |
| 757 | details. |
| 758 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 759 | **Programmer's note:** Variables defined in the class definition are class |
Georg Brandl | 65e5f80 | 2010-08-02 18:10:13 +0000 | [diff] [blame] | 760 | attributes; they are shared by instances. Instance attributes can be set in a |
| 761 | method with ``self.name = value``. Both class and instance attributes are |
| 762 | accessible through the notation "``self.name``", and an instance attribute hides |
| 763 | a class attribute with the same name when accessed in this way. Class |
| 764 | attributes can be used as defaults for instance attributes, but using mutable |
| 765 | values there can lead to unexpected results. :ref:`Descriptors <descriptors>` |
| 766 | can be used to create instance variables with different implementation details. |
Georg Brandl | 85eb8c1 | 2007-08-31 16:33:38 +0000 | [diff] [blame] | 767 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 768 | |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 769 | .. seealso:: |
| 770 | |
Andrés Delfino | 0f14fc1 | 2018-10-19 20:31:15 -0300 | [diff] [blame] | 771 | :pep:`3115` - Metaclasses in Python 3000 |
| 772 | The proposal that changed the declaration of metaclasses to the current |
| 773 | syntax, and the semantics for how classes with metaclasses are |
| 774 | constructed. |
| 775 | |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 776 | :pep:`3129` - Class Decorators |
Andrés Delfino | 0f14fc1 | 2018-10-19 20:31:15 -0300 | [diff] [blame] | 777 | The proposal that added class decorators. Function and method decorators |
| 778 | were introduced in :pep:`318`. |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 779 | |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 780 | |
Elvis Pranskevichus | 63536bd | 2018-05-19 23:15:06 -0400 | [diff] [blame] | 781 | .. _async: |
| 782 | |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 783 | Coroutines |
| 784 | ========== |
| 785 | |
Yury Selivanov | 5376ba9 | 2015-06-22 12:19:30 -0400 | [diff] [blame] | 786 | .. versionadded:: 3.5 |
| 787 | |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 788 | .. index:: statement: async def |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 789 | .. _`async def`: |
| 790 | |
| 791 | Coroutine function definition |
| 792 | ----------------------------- |
| 793 | |
Victor Stinner | 8af239e | 2020-09-18 09:10:15 +0200 | [diff] [blame] | 794 | .. productionlist:: python-grammar |
Andrés Delfino | caccca78 | 2018-07-07 17:24:46 -0300 | [diff] [blame] | 795 | async_funcdef: [`decorators`] "async" "def" `funcname` "(" [`parameter_list`] ")" |
| 796 | : ["->" `expression`] ":" `suite` |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 797 | |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 798 | .. index:: |
| 799 | keyword: async |
| 800 | keyword: await |
| 801 | |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 802 | Execution of Python coroutines can be suspended and resumed at many points |
Andre Delfino | 8adf8d1 | 2020-10-12 10:52:30 -0300 | [diff] [blame] | 803 | (see :term:`coroutine`). :keyword:`await` expressions, :keyword:`async for` and |
| 804 | :keyword:`async with` can only be used in the body of a coroutine function. |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 805 | |
| 806 | Functions defined with ``async def`` syntax are always coroutine functions, |
| 807 | even if they do not contain ``await`` or ``async`` keywords. |
| 808 | |
Andrés Delfino | 95f68b1 | 2018-10-28 07:41:57 -0300 | [diff] [blame] | 809 | It is a :exc:`SyntaxError` to use a ``yield from`` expression inside the body |
| 810 | of a coroutine function. |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 811 | |
Yury Selivanov | 5376ba9 | 2015-06-22 12:19:30 -0400 | [diff] [blame] | 812 | An example of a coroutine function:: |
| 813 | |
| 814 | async def func(param1, param2): |
| 815 | do_stuff() |
| 816 | await some_coroutine() |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 817 | |
Andre Delfino | 8adf8d1 | 2020-10-12 10:52:30 -0300 | [diff] [blame] | 818 | .. versionchanged:: 3.7 |
| 819 | ``await`` and ``async`` are now keywords; previously they were only |
| 820 | treated as such inside the body of a coroutine function. |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 821 | |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 822 | .. index:: statement: async for |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 823 | .. _`async for`: |
| 824 | |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 825 | The :keyword:`!async for` statement |
| 826 | ----------------------------------- |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 827 | |
Victor Stinner | 8af239e | 2020-09-18 09:10:15 +0200 | [diff] [blame] | 828 | .. productionlist:: python-grammar |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 829 | async_for_stmt: "async" `for_stmt` |
| 830 | |
Nick Gaya | 4b8cdfc | 2020-12-11 00:27:35 -0800 | [diff] [blame] | 831 | An :term:`asynchronous iterable` provides an ``__aiter__`` method that directly |
| 832 | returns an :term:`asynchronous iterator`, which can call asynchronous code in |
| 833 | its ``__anext__`` method. |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 834 | |
| 835 | The ``async for`` statement allows convenient iteration over asynchronous |
Nick Gaya | 4b8cdfc | 2020-12-11 00:27:35 -0800 | [diff] [blame] | 836 | iterables. |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 837 | |
| 838 | The following code:: |
| 839 | |
| 840 | async for TARGET in ITER: |
Géry Ogam | 226e6e7 | 2019-12-30 05:24:51 +0000 | [diff] [blame] | 841 | SUITE |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 842 | else: |
Géry Ogam | 226e6e7 | 2019-12-30 05:24:51 +0000 | [diff] [blame] | 843 | SUITE2 |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 844 | |
| 845 | Is semantically equivalent to:: |
| 846 | |
| 847 | iter = (ITER) |
Yury Selivanov | a6f6edb | 2016-06-09 15:08:31 -0400 | [diff] [blame] | 848 | iter = type(iter).__aiter__(iter) |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 849 | running = True |
Géry Ogam | 226e6e7 | 2019-12-30 05:24:51 +0000 | [diff] [blame] | 850 | |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 851 | while running: |
| 852 | try: |
| 853 | TARGET = await type(iter).__anext__(iter) |
| 854 | except StopAsyncIteration: |
| 855 | running = False |
| 856 | else: |
Géry Ogam | 226e6e7 | 2019-12-30 05:24:51 +0000 | [diff] [blame] | 857 | SUITE |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 858 | else: |
Géry Ogam | 226e6e7 | 2019-12-30 05:24:51 +0000 | [diff] [blame] | 859 | SUITE2 |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 860 | |
| 861 | See also :meth:`__aiter__` and :meth:`__anext__` for details. |
| 862 | |
Andrés Delfino | 95f68b1 | 2018-10-28 07:41:57 -0300 | [diff] [blame] | 863 | It is a :exc:`SyntaxError` to use an ``async for`` statement outside the |
| 864 | body of a coroutine function. |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 865 | |
| 866 | |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 867 | .. index:: statement: async with |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 868 | .. _`async with`: |
| 869 | |
Serhiy Storchaka | 2b57c43 | 2018-12-19 08:09:46 +0200 | [diff] [blame] | 870 | The :keyword:`!async with` statement |
| 871 | ------------------------------------ |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 872 | |
Victor Stinner | 8af239e | 2020-09-18 09:10:15 +0200 | [diff] [blame] | 873 | .. productionlist:: python-grammar |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 874 | async_with_stmt: "async" `with_stmt` |
| 875 | |
| 876 | An :term:`asynchronous context manager` is a :term:`context manager` that is |
| 877 | able to suspend execution in its *enter* and *exit* methods. |
| 878 | |
| 879 | The following code:: |
| 880 | |
Géry Ogam | 226e6e7 | 2019-12-30 05:24:51 +0000 | [diff] [blame] | 881 | async with EXPRESSION as TARGET: |
| 882 | SUITE |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 883 | |
Géry Ogam | 226e6e7 | 2019-12-30 05:24:51 +0000 | [diff] [blame] | 884 | is semantically equivalent to:: |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 885 | |
Géry Ogam | 226e6e7 | 2019-12-30 05:24:51 +0000 | [diff] [blame] | 886 | manager = (EXPRESSION) |
Géry Ogam | 226e6e7 | 2019-12-30 05:24:51 +0000 | [diff] [blame] | 887 | aenter = type(manager).__aenter__ |
Géry Ogam | 1d1b97a | 2020-01-14 12:58:29 +0100 | [diff] [blame] | 888 | aexit = type(manager).__aexit__ |
Géry Ogam | 226e6e7 | 2019-12-30 05:24:51 +0000 | [diff] [blame] | 889 | value = await aenter(manager) |
| 890 | hit_except = False |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 891 | |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 892 | try: |
Géry Ogam | 226e6e7 | 2019-12-30 05:24:51 +0000 | [diff] [blame] | 893 | TARGET = value |
| 894 | SUITE |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 895 | except: |
Géry Ogam | 226e6e7 | 2019-12-30 05:24:51 +0000 | [diff] [blame] | 896 | hit_except = True |
| 897 | if not await aexit(manager, *sys.exc_info()): |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 898 | raise |
Géry Ogam | 226e6e7 | 2019-12-30 05:24:51 +0000 | [diff] [blame] | 899 | finally: |
| 900 | if not hit_except: |
| 901 | await aexit(manager, None, None, None) |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 902 | |
| 903 | See also :meth:`__aenter__` and :meth:`__aexit__` for details. |
| 904 | |
Andrés Delfino | 95f68b1 | 2018-10-28 07:41:57 -0300 | [diff] [blame] | 905 | It is a :exc:`SyntaxError` to use an ``async with`` statement outside the |
| 906 | body of a coroutine function. |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 907 | |
| 908 | .. seealso:: |
| 909 | |
| 910 | :pep:`492` - Coroutines with async and await syntax |
Andrés Delfino | 0f14fc1 | 2018-10-19 20:31:15 -0300 | [diff] [blame] | 911 | The proposal that made coroutines a proper standalone concept in Python, |
| 912 | and added supporting syntax. |
Yury Selivanov | f3e40fa | 2015-05-21 11:50:30 -0400 | [diff] [blame] | 913 | |
| 914 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 915 | .. rubric:: Footnotes |
| 916 | |
Ezio Melotti | fc3db8a | 2011-06-26 11:25:28 +0300 | [diff] [blame] | 917 | .. [#] The exception is propagated to the invocation stack unless |
| 918 | there is a :keyword:`finally` clause which happens to raise another |
| 919 | exception. That new exception causes the old one to be lost. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 920 | |
Georg Brandl | 3dbca81 | 2008-07-23 16:10:53 +0000 | [diff] [blame] | 921 | .. [#] A string literal appearing as the first statement in the function body is |
| 922 | transformed into the function's ``__doc__`` attribute and therefore the |
| 923 | function's :term:`docstring`. |
| 924 | |
| 925 | .. [#] A string literal appearing as the first statement in the class body is |
| 926 | transformed into the namespace's ``__doc__`` item and therefore the class's |
| 927 | :term:`docstring`. |