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