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 |
| 24 | |
| 25 | Compound statements consist of one or more 'clauses.' A clause consists of a |
| 26 | header and a 'suite.' The clause headers of a particular compound statement are |
| 27 | all at the same indentation level. Each clause header begins with a uniquely |
| 28 | identifying keyword and ends with a colon. A suite is a group of statements |
| 29 | controlled by a clause. A suite can be one or more semicolon-separated simple |
| 30 | statements on the same line as the header, following the header's colon, or it |
| 31 | can be one or more indented statements on subsequent lines. Only the latter |
| 32 | form of suite can contain nested compound statements; the following is illegal, |
| 33 | 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] | 34 | :keyword:`else` clause would belong:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 35 | |
Georg Brandl | 6911e3c | 2007-09-04 07:15:32 +0000 | [diff] [blame] | 36 | if test1: if test2: print(x) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 37 | |
| 38 | 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] | 39 | that in the following example, either all or none of the :func:`print` calls are |
| 40 | executed:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 41 | |
Georg Brandl | 6911e3c | 2007-09-04 07:15:32 +0000 | [diff] [blame] | 42 | if x < y < z: print(x); print(y); print(z) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 43 | |
| 44 | Summarizing: |
| 45 | |
| 46 | .. productionlist:: |
| 47 | compound_stmt: `if_stmt` |
| 48 | : | `while_stmt` |
| 49 | : | `for_stmt` |
| 50 | : | `try_stmt` |
| 51 | : | `with_stmt` |
| 52 | : | `funcdef` |
| 53 | : | `classdef` |
| 54 | suite: `stmt_list` NEWLINE | NEWLINE INDENT `statement`+ DEDENT |
| 55 | statement: `stmt_list` NEWLINE | `compound_stmt` |
| 56 | stmt_list: `simple_stmt` (";" `simple_stmt`)* [";"] |
| 57 | |
| 58 | .. index:: |
| 59 | single: NEWLINE token |
| 60 | single: DEDENT token |
| 61 | pair: dangling; else |
| 62 | |
| 63 | Note that statements always end in a ``NEWLINE`` possibly followed by a |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 64 | ``DEDENT``. Also note that optional continuation clauses always begin with a |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 65 | keyword that cannot start a statement, thus there are no ambiguities (the |
| 66 | 'dangling :keyword:`else`' problem is solved in Python by requiring nested |
| 67 | :keyword:`if` statements to be indented). |
| 68 | |
| 69 | The formatting of the grammar rules in the following sections places each clause |
| 70 | on a separate line for clarity. |
| 71 | |
| 72 | |
| 73 | .. _if: |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 74 | .. _elif: |
| 75 | .. _else: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 76 | |
| 77 | The :keyword:`if` statement |
| 78 | =========================== |
| 79 | |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 80 | .. index:: |
| 81 | statement: if |
| 82 | keyword: elif |
| 83 | keyword: else |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 84 | keyword: elif |
| 85 | keyword: else |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 86 | |
| 87 | The :keyword:`if` statement is used for conditional execution: |
| 88 | |
| 89 | .. productionlist:: |
| 90 | if_stmt: "if" `expression` ":" `suite` |
| 91 | : ( "elif" `expression` ":" `suite` )* |
| 92 | : ["else" ":" `suite`] |
| 93 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 94 | It selects exactly one of the suites by evaluating the expressions one by one |
| 95 | until one is found to be true (see section :ref:`booleans` for the definition of |
| 96 | true and false); then that suite is executed (and no other part of the |
| 97 | :keyword:`if` statement is executed or evaluated). If all expressions are |
| 98 | false, the suite of the :keyword:`else` clause, if present, is executed. |
| 99 | |
| 100 | |
| 101 | .. _while: |
| 102 | |
| 103 | The :keyword:`while` statement |
| 104 | ============================== |
| 105 | |
| 106 | .. index:: |
| 107 | statement: while |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 108 | keyword: else |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 109 | pair: loop; statement |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 110 | keyword: else |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 111 | |
| 112 | The :keyword:`while` statement is used for repeated execution as long as an |
| 113 | expression is true: |
| 114 | |
| 115 | .. productionlist:: |
| 116 | while_stmt: "while" `expression` ":" `suite` |
| 117 | : ["else" ":" `suite`] |
| 118 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 119 | This repeatedly tests the expression and, if it is true, executes the first |
| 120 | suite; if the expression is false (which may be the first time it is tested) the |
| 121 | suite of the :keyword:`else` clause, if present, is executed and the loop |
| 122 | terminates. |
| 123 | |
| 124 | .. index:: |
| 125 | statement: break |
| 126 | statement: continue |
| 127 | |
| 128 | A :keyword:`break` statement executed in the first suite terminates the loop |
| 129 | without executing the :keyword:`else` clause's suite. A :keyword:`continue` |
| 130 | statement executed in the first suite skips the rest of the suite and goes back |
| 131 | to testing the expression. |
| 132 | |
| 133 | |
| 134 | .. _for: |
| 135 | |
| 136 | The :keyword:`for` statement |
| 137 | ============================ |
| 138 | |
| 139 | .. index:: |
| 140 | statement: for |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 141 | keyword: in |
| 142 | keyword: else |
| 143 | pair: target; list |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 144 | pair: loop; statement |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 145 | keyword: in |
| 146 | keyword: else |
| 147 | pair: target; list |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 148 | object: sequence |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 149 | |
| 150 | The :keyword:`for` statement is used to iterate over the elements of a sequence |
| 151 | (such as a string, tuple or list) or other iterable object: |
| 152 | |
| 153 | .. productionlist:: |
| 154 | for_stmt: "for" `target_list` "in" `expression_list` ":" `suite` |
| 155 | : ["else" ":" `suite`] |
| 156 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 157 | The expression list is evaluated once; it should yield an iterable object. An |
| 158 | iterator is created for the result of the ``expression_list``. The suite is |
| 159 | then executed once for each item provided by the iterator, in the order of |
| 160 | ascending indices. Each item in turn is assigned to the target list using the |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 161 | standard rules for assignments (see :ref:`assignment`), and then the suite is |
| 162 | executed. When the items are exhausted (which is immediately when the sequence |
| 163 | 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] | 164 | the :keyword:`else` clause, if present, is executed, and the loop terminates. |
| 165 | |
| 166 | .. index:: |
| 167 | statement: break |
| 168 | statement: continue |
| 169 | |
| 170 | A :keyword:`break` statement executed in the first suite terminates the loop |
| 171 | without executing the :keyword:`else` clause's suite. A :keyword:`continue` |
| 172 | statement executed in the first suite skips the rest of the suite and continues |
| 173 | with the next item, or with the :keyword:`else` clause if there was no next |
| 174 | item. |
| 175 | |
| 176 | The suite may assign to the variable(s) in the target list; this does not affect |
| 177 | the next item assigned to it. |
| 178 | |
| 179 | .. index:: |
| 180 | builtin: range |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 181 | |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 182 | Names in the target list are not deleted when the loop is finished, but if the |
| 183 | sequence is empty, it will not have been assigned to at all by the loop. Hint: |
| 184 | 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] | 185 | 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] | 186 | returns the list ``[0, 1, 2]``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 187 | |
Georg Brandl | e720c0a | 2009-04-27 16:20:50 +0000 | [diff] [blame] | 188 | .. note:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 189 | |
| 190 | .. index:: |
| 191 | single: loop; over mutable sequence |
| 192 | single: mutable sequence; loop over |
| 193 | |
| 194 | There is a subtlety when the sequence is being modified by the loop (this can |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 195 | only occur for mutable sequences, i.e. lists). An internal counter is used |
| 196 | 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] | 197 | iteration. When this counter has reached the length of the sequence the loop |
| 198 | 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] | 199 | item from the sequence, the next item will be skipped (since it gets the |
| 200 | index of the current item which has already been treated). Likewise, if the |
| 201 | suite inserts an item in the sequence before the current item, the current |
| 202 | item will be treated again the next time through the loop. This can lead to |
| 203 | nasty bugs that can be avoided by making a temporary copy using a slice of |
| 204 | the whole sequence, e.g., :: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 205 | |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 206 | for x in a[:]: |
| 207 | if x < 0: a.remove(x) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 208 | |
| 209 | |
| 210 | .. _try: |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 211 | .. _except: |
| 212 | .. _finally: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 213 | |
| 214 | The :keyword:`try` statement |
| 215 | ============================ |
| 216 | |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 217 | .. index:: |
| 218 | statement: try |
| 219 | keyword: except |
| 220 | keyword: finally |
Georg Brandl | 1617457 | 2007-09-01 12:38:06 +0000 | [diff] [blame] | 221 | .. index:: keyword: except |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 222 | |
| 223 | The :keyword:`try` statement specifies exception handlers and/or cleanup code |
| 224 | for a group of statements: |
| 225 | |
| 226 | .. productionlist:: |
| 227 | try_stmt: try1_stmt | try2_stmt |
| 228 | try1_stmt: "try" ":" `suite` |
Georg Brandl | 0068e2c | 2007-09-06 14:03:41 +0000 | [diff] [blame] | 229 | : ("except" [`expression` ["as" `target`]] ":" `suite`)+ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 230 | : ["else" ":" `suite`] |
| 231 | : ["finally" ":" `suite`] |
| 232 | try2_stmt: "try" ":" `suite` |
| 233 | : "finally" ":" `suite` |
| 234 | |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 235 | |
| 236 | 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] | 237 | exception occurs in the :keyword:`try` clause, no exception handler is executed. |
| 238 | When an exception occurs in the :keyword:`try` suite, a search for an exception |
| 239 | handler is started. This search inspects the except clauses in turn until one |
| 240 | is found that matches the exception. An expression-less except clause, if |
| 241 | present, must be last; it matches any exception. For an except clause with an |
| 242 | expression, that expression is evaluated, and the clause matches the exception |
| 243 | if the resulting object is "compatible" with the exception. An object is |
| 244 | compatible with an exception if it is the class or a base class of the exception |
| 245 | object or a tuple containing an item compatible with the exception. |
| 246 | |
| 247 | If no except clause matches the exception, the search for an exception handler |
| 248 | continues in the surrounding code and on the invocation stack. [#]_ |
| 249 | |
| 250 | If the evaluation of an expression in the header of an except clause raises an |
| 251 | exception, the original search for a handler is canceled and a search starts for |
| 252 | the new exception in the surrounding code and on the call stack (it is treated |
| 253 | as if the entire :keyword:`try` statement raised the exception). |
| 254 | |
| 255 | 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] | 256 | specified after the :keyword:`as` keyword in that except clause, if present, and |
| 257 | the except clause's suite is executed. All except clauses must have an |
| 258 | executable block. When the end of this block is reached, execution continues |
| 259 | normally after the entire try statement. (This means that if two nested |
| 260 | handlers exist for the same exception, and the exception occurs in the try |
| 261 | clause of the inner handler, the outer handler will not handle the exception.) |
| 262 | |
| 263 | When an exception has been assigned using ``as target``, it is cleared at the |
| 264 | end of the except clause. This is as if :: |
| 265 | |
| 266 | except E as N: |
| 267 | foo |
| 268 | |
| 269 | was translated to :: |
| 270 | |
| 271 | except E as N: |
| 272 | try: |
| 273 | foo |
| 274 | finally: |
| 275 | N = None |
| 276 | del N |
| 277 | |
| 278 | That means that you have to assign the exception to a different name if you want |
| 279 | to be able to refer to it after the except clause. The reason for this is that |
| 280 | with the traceback attached to them, exceptions will form a reference cycle with |
| 281 | the stack frame, keeping all locals in that frame alive until the next garbage |
| 282 | collection occurs. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 283 | |
| 284 | .. index:: |
| 285 | module: sys |
| 286 | object: traceback |
| 287 | |
| 288 | Before an except clause's suite is executed, details about the exception are |
| 289 | stored in the :mod:`sys` module and can be access via :func:`sys.exc_info`. |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 290 | :func:`sys.exc_info` returns a 3-tuple consisting of: ``exc_type``, the |
| 291 | exception class; ``exc_value``, the exception instance; ``exc_traceback``, a |
| 292 | traceback object (see section :ref:`types`) identifying the point in the program |
| 293 | where the exception occurred. :func:`sys.exc_info` values are restored to their |
| 294 | previous values (before the call) when returning from a function that handled an |
| 295 | exception. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 296 | |
| 297 | .. index:: |
| 298 | keyword: else |
| 299 | statement: return |
| 300 | statement: break |
| 301 | statement: continue |
| 302 | |
| 303 | The optional :keyword:`else` clause is executed if and when control flows off |
| 304 | the end of the :keyword:`try` clause. [#]_ Exceptions in the :keyword:`else` |
| 305 | clause are not handled by the preceding :keyword:`except` clauses. |
| 306 | |
| 307 | .. index:: keyword: finally |
| 308 | |
| 309 | If :keyword:`finally` is present, it specifies a 'cleanup' handler. The |
| 310 | :keyword:`try` clause is executed, including any :keyword:`except` and |
| 311 | :keyword:`else` clauses. If an exception occurs in any of the clauses and is |
| 312 | not handled, the exception is temporarily saved. The :keyword:`finally` clause |
| 313 | is executed. If there is a saved exception, it is re-raised at the end of the |
| 314 | :keyword:`finally` clause. If the :keyword:`finally` clause raises another |
| 315 | exception or executes a :keyword:`return` or :keyword:`break` statement, the |
| 316 | saved exception is lost. The exception information is not available to the |
| 317 | program during execution of the :keyword:`finally` clause. |
| 318 | |
| 319 | .. index:: |
| 320 | statement: return |
| 321 | statement: break |
| 322 | statement: continue |
| 323 | |
| 324 | When a :keyword:`return`, :keyword:`break` or :keyword:`continue` statement is |
| 325 | executed in the :keyword:`try` suite of a :keyword:`try`...\ :keyword:`finally` |
| 326 | statement, the :keyword:`finally` clause is also executed 'on the way out.' A |
| 327 | :keyword:`continue` statement is illegal in the :keyword:`finally` clause. (The |
| 328 | reason is a problem with the current implementation --- this restriction may be |
| 329 | lifted in the future). |
| 330 | |
| 331 | Additional information on exceptions can be found in section :ref:`exceptions`, |
| 332 | and information on using the :keyword:`raise` statement to generate exceptions |
| 333 | may be found in section :ref:`raise`. |
| 334 | |
| 335 | |
| 336 | .. _with: |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 337 | .. _as: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 338 | |
| 339 | The :keyword:`with` statement |
| 340 | ============================= |
| 341 | |
| 342 | .. index:: statement: with |
| 343 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 344 | 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] | 345 | methods defined by a context manager (see section :ref:`context-managers`). |
| 346 | This allows common :keyword:`try`...\ :keyword:`except`...\ :keyword:`finally` |
| 347 | usage patterns to be encapsulated for convenient reuse. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 348 | |
| 349 | .. productionlist:: |
Georg Brandl | 0c31562 | 2009-05-25 21:10:36 +0000 | [diff] [blame] | 350 | with_stmt: "with" with_item ("," with_item)* ":" `suite` |
| 351 | with_item: `expression` ["as" `target`] |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 352 | |
Georg Brandl | 0c31562 | 2009-05-25 21:10:36 +0000 | [diff] [blame] | 353 | 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] | 354 | |
| 355 | #. The context expression is evaluated to obtain a context manager. |
| 356 | |
Benjamin Peterson | 876b2f2 | 2009-06-28 03:18:59 +0000 | [diff] [blame] | 357 | #. The context manager's :meth:`__exit__` is loaded for later use. |
| 358 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 359 | #. The context manager's :meth:`__enter__` method is invoked. |
| 360 | |
| 361 | #. If a target was included in the :keyword:`with` statement, the return value |
| 362 | from :meth:`__enter__` is assigned to it. |
| 363 | |
| 364 | .. note:: |
| 365 | |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 366 | The :keyword:`with` statement guarantees that if the :meth:`__enter__` |
| 367 | method returns without an error, then :meth:`__exit__` will always be |
Benjamin Peterson | 876b2f2 | 2009-06-28 03:18:59 +0000 | [diff] [blame] | 368 | called. Thus, if an error occurs during the assignment to the target list, |
| 369 | it will be treated the same as an error occurring within the suite would |
| 370 | be. See step 6 below. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 371 | |
| 372 | #. The suite is executed. |
| 373 | |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 374 | #. The context manager's :meth:`__exit__` method is invoked. If an exception |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 375 | caused the suite to be exited, its type, value, and traceback are passed as |
| 376 | arguments to :meth:`__exit__`. Otherwise, three :const:`None` arguments are |
| 377 | supplied. |
| 378 | |
| 379 | 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] | 380 | :meth:`__exit__` method was false, the exception is reraised. If the return |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 381 | value was true, the exception is suppressed, and execution continues with the |
| 382 | statement following the :keyword:`with` statement. |
| 383 | |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 384 | If the suite was exited for any reason other than an exception, the return |
| 385 | value from :meth:`__exit__` is ignored, and execution proceeds at the normal |
| 386 | location for the kind of exit that was taken. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 387 | |
Georg Brandl | 0c31562 | 2009-05-25 21:10:36 +0000 | [diff] [blame] | 388 | With more than one item, the context managers are processed as if multiple |
| 389 | :keyword:`with` statements were nested:: |
| 390 | |
| 391 | with A() as a, B() as b: |
| 392 | suite |
| 393 | |
| 394 | is equivalent to :: |
| 395 | |
| 396 | with A() as a: |
| 397 | with B() as b: |
| 398 | suite |
| 399 | |
| 400 | .. versionchanged:: 3.1 |
| 401 | Support for multiple context expressions. |
| 402 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 403 | .. seealso:: |
| 404 | |
| 405 | :pep:`0343` - The "with" statement |
| 406 | The specification, background, and examples for the Python :keyword:`with` |
| 407 | statement. |
| 408 | |
| 409 | |
| 410 | .. _function: |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 411 | .. _def: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 412 | |
| 413 | Function definitions |
| 414 | ==================== |
| 415 | |
| 416 | .. index:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 417 | statement: def |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 418 | pair: function; definition |
| 419 | pair: function; name |
| 420 | pair: name; binding |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 421 | object: user-defined function |
| 422 | object: function |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 423 | pair: function; name |
| 424 | pair: name; binding |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 425 | |
| 426 | A function definition defines a user-defined function object (see section |
| 427 | :ref:`types`): |
| 428 | |
| 429 | .. productionlist:: |
Georg Brandl | 33d1ae8 | 2008-09-21 07:40:25 +0000 | [diff] [blame] | 430 | funcdef: [`decorators`] "def" `funcname` "(" [`parameter_list`] ")" ["->" `expression`] ":" `suite` |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 431 | decorators: `decorator`+ |
| 432 | decorator: "@" `dotted_name` ["(" [`argument_list` [","]] ")"] NEWLINE |
| 433 | dotted_name: `identifier` ("." `identifier`)* |
| 434 | parameter_list: (`defparameter` ",")* |
| 435 | : ( "*" [`parameter`] ("," `defparameter`)* |
| 436 | : [, "**" `parameter`] |
| 437 | : | "**" `parameter` |
| 438 | : | `defparameter` [","] ) |
| 439 | parameter: `identifier` [":" `expression`] |
| 440 | defparameter: `parameter` ["=" `expression`] |
| 441 | funcname: `identifier` |
| 442 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 443 | |
| 444 | A function definition is an executable statement. Its execution binds the |
| 445 | function name in the current local namespace to a function object (a wrapper |
| 446 | around the executable code for the function). This function object contains a |
| 447 | reference to the current global namespace as the global namespace to be used |
| 448 | when the function is called. |
| 449 | |
| 450 | The function definition does not execute the function body; this gets executed |
Georg Brandl | 3dbca81 | 2008-07-23 16:10:53 +0000 | [diff] [blame] | 451 | only when the function is called. [#]_ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 452 | |
Christian Heimes | dae2a89 | 2008-04-19 00:55:37 +0000 | [diff] [blame] | 453 | .. index:: |
| 454 | statement: @ |
| 455 | |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 456 | 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] | 457 | Decorator expressions are evaluated when the function is defined, in the scope |
| 458 | that contains the function definition. The result must be a callable, which is |
| 459 | invoked with the function object as the only argument. The returned value is |
| 460 | bound to the function name instead of the function object. Multiple decorators |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 461 | are applied in nested fashion. For example, the following code :: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 462 | |
| 463 | @f1(arg) |
| 464 | @f2 |
| 465 | def func(): pass |
| 466 | |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 467 | is equivalent to :: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 468 | |
| 469 | def func(): pass |
| 470 | func = f1(arg)(f2(func)) |
| 471 | |
| 472 | .. index:: triple: default; parameter; value |
| 473 | |
| 474 | When one or more parameters have the form *parameter* ``=`` *expression*, the |
| 475 | function is said to have "default parameter values." For a parameter with a |
| 476 | default value, the corresponding argument may be omitted from a call, in which |
| 477 | 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] | 478 | value, all following parameters up until the "``*``" must also have a default |
| 479 | 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] | 480 | |
| 481 | **Default parameter values are evaluated when the function definition is |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 482 | executed.** This means that the expression is evaluated once, when the function |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 483 | is defined, and that that same "pre-computed" value is used for each call. This |
| 484 | is especially important to understand when a default parameter is a mutable |
| 485 | object, such as a list or a dictionary: if the function modifies the object |
| 486 | (e.g. by appending an item to a list), the default value is in effect modified. |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 487 | This is generally not what was intended. A way around this is to use ``None`` |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 488 | as the default, and explicitly test for it in the body of the function, e.g.:: |
| 489 | |
| 490 | def whats_on_the_telly(penguin=None): |
| 491 | if penguin is None: |
| 492 | penguin = [] |
| 493 | penguin.append("property of the zoo") |
| 494 | return penguin |
| 495 | |
Christian Heimes | dae2a89 | 2008-04-19 00:55:37 +0000 | [diff] [blame] | 496 | .. index:: |
| 497 | statement: * |
| 498 | statement: ** |
| 499 | |
| 500 | 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] | 501 | function call always assigns values to all parameters mentioned in the parameter |
| 502 | list, either from position arguments, from keyword arguments, or from default |
| 503 | values. If the form "``*identifier``" is present, it is initialized to a tuple |
| 504 | receiving any excess positional parameters, defaulting to the empty tuple. If |
| 505 | the form "``**identifier``" is present, it is initialized to a new dictionary |
| 506 | receiving any excess keyword arguments, defaulting to a new empty dictionary. |
| 507 | Parameters after "``*``" or "``*identifier``" are keyword-only parameters and |
| 508 | may only be passed used keyword arguments. |
| 509 | |
| 510 | .. index:: pair: function; annotations |
| 511 | |
| 512 | Parameters may have annotations of the form "``: expression``" following the |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 513 | parameter name. Any parameter may have an annotation even those of the form |
| 514 | ``*identifier`` or ``**identifier``. Functions may have "return" annotation of |
| 515 | the form "``-> expression``" after the parameter list. These annotations can be |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 516 | any valid Python expression and are evaluated when the function definition is |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 517 | executed. Annotations may be evaluated in a different order than they appear in |
| 518 | the source code. The presence of annotations does not change the semantics of a |
| 519 | function. The annotation values are available as values of a dictionary keyed |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 520 | by the parameters' names in the :attr:`__annotations__` attribute of the |
| 521 | function object. |
| 522 | |
| 523 | .. index:: pair: lambda; form |
| 524 | |
| 525 | It is also possible to create anonymous functions (functions not bound to a |
| 526 | name), for immediate use in expressions. This uses lambda forms, described in |
| 527 | section :ref:`lambda`. Note that the lambda form is merely a shorthand for a |
| 528 | simplified function definition; a function defined in a ":keyword:`def`" |
| 529 | statement can be passed around or assigned to another name just like a function |
| 530 | defined by a lambda form. The ":keyword:`def`" form is actually more powerful |
| 531 | since it allows the execution of multiple statements and annotations. |
| 532 | |
| 533 | **Programmer's note:** Functions are first-class objects. A "``def``" form |
| 534 | executed inside a function definition defines a local function that can be |
| 535 | returned or passed around. Free variables used in the nested function can |
| 536 | access the local variables of the function containing the def. See section |
| 537 | :ref:`naming` for details. |
| 538 | |
| 539 | |
| 540 | .. _class: |
| 541 | |
| 542 | Class definitions |
| 543 | ================= |
| 544 | |
| 545 | .. index:: |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 546 | object: class |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 547 | statement: class |
| 548 | pair: class; definition |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 549 | pair: class; name |
| 550 | pair: name; binding |
| 551 | pair: execution; frame |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 552 | single: inheritance |
Georg Brandl | 3dbca81 | 2008-07-23 16:10:53 +0000 | [diff] [blame] | 553 | single: docstring |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 554 | |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 555 | A class definition defines a class object (see section :ref:`types`): |
| 556 | |
| 557 | .. XXX need to document PEP 3115 changes here (new metaclasses) |
| 558 | |
| 559 | .. productionlist:: |
| 560 | classdef: [`decorators`] "class" `classname` [`inheritance`] ":" `suite` |
| 561 | inheritance: "(" [`expression_list`] ")" |
| 562 | classname: `identifier` |
| 563 | |
| 564 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 565 | A class definition is an executable statement. It first evaluates the |
| 566 | inheritance list, if present. Each item in the inheritance list should evaluate |
| 567 | to a class object or class type which allows subclassing. The class's suite is |
| 568 | then executed in a new execution frame (see section :ref:`naming`), using a |
| 569 | newly created local namespace and the original global namespace. (Usually, the |
| 570 | suite contains only function definitions.) When the class's suite finishes |
Georg Brandl | 3dbca81 | 2008-07-23 16:10:53 +0000 | [diff] [blame] | 571 | execution, its execution frame is discarded but its local namespace is |
| 572 | saved. [#]_ A class object is then created using the inheritance list for the |
| 573 | base classes and the saved local namespace for the attribute dictionary. The |
| 574 | class name is bound to this class object in the original local namespace. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 575 | |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 576 | Classes can also be decorated; as with functions, :: |
| 577 | |
| 578 | @f1(arg) |
| 579 | @f2 |
| 580 | class Foo: pass |
| 581 | |
| 582 | is equivalent to :: |
| 583 | |
| 584 | class Foo: pass |
| 585 | Foo = f1(arg)(f2(Foo)) |
| 586 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 587 | **Programmer's note:** Variables defined in the class definition are class |
Benjamin Peterson | f04779b | 2008-06-28 23:05:03 +0000 | [diff] [blame] | 588 | variables; they are shared by instances. Instance variables can be set in a |
| 589 | method with ``self.name = value``. Both class and instance variables are |
| 590 | accessible through the notation "``self.name``", and an instance variable hides |
| 591 | a class variable with the same name when accessed in this way. Class variables |
| 592 | can be used as defaults for instance variables, but using mutable values there |
| 593 | can lead to unexpected results. Descriptors can be used to create instance |
| 594 | variables with different implementation details. |
Georg Brandl | 85eb8c1 | 2007-08-31 16:33:38 +0000 | [diff] [blame] | 595 | |
| 596 | .. XXX add link to descriptor docs above |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 597 | |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 598 | .. seealso:: |
| 599 | |
| 600 | :pep:`3129` - Class Decorators |
| 601 | |
Benjamin Peterson | 4118174 | 2008-07-02 20:22:54 +0000 | [diff] [blame] | 602 | Class definitions, like function definitions, may be wrapped by one or more |
| 603 | :term:`decorator` expressions. The evaluation rules for the decorator |
| 604 | expressions are the same as for functions. The result must be a class object, |
| 605 | which is then bound to the class name. |
Georg Brandl | 02c3056 | 2007-09-07 17:52:53 +0000 | [diff] [blame] | 606 | |
| 607 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 608 | .. rubric:: Footnotes |
| 609 | |
Christian Heimes | c3f30c4 | 2008-02-22 16:37:40 +0000 | [diff] [blame] | 610 | .. [#] The exception is propagated to the invocation stack only if there is no |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 611 | :keyword:`finally` clause that negates the exception. |
| 612 | |
Georg Brandl | f43713f | 2009-10-22 16:08:10 +0000 | [diff] [blame] | 613 | .. [#] Currently, control "flows off the end" except in the case of an exception |
| 614 | or the execution of a :keyword:`return`, :keyword:`continue`, or |
| 615 | :keyword:`break` statement. |
Georg Brandl | 3dbca81 | 2008-07-23 16:10:53 +0000 | [diff] [blame] | 616 | |
| 617 | .. [#] A string literal appearing as the first statement in the function body is |
| 618 | transformed into the function's ``__doc__`` attribute and therefore the |
| 619 | function's :term:`docstring`. |
| 620 | |
| 621 | .. [#] A string literal appearing as the first statement in the class body is |
| 622 | transformed into the namespace's ``__doc__`` item and therefore the class's |
| 623 | :term:`docstring`. |