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