blob: 5582cf65317b3de6fa64df77b8e724b52ab1075d [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001.. _compound:
2
3*******************
4Compound statements
5*******************
6
7.. index:: pair: compound; statement
8
9Compound statements contain (groups of) other statements; they affect or control
10the execution of those other statements in some way. In general, compound
11statements span multiple lines, although in simple incarnations a whole compound
12statement may be contained in one line.
13
14The :keyword:`if`, :keyword:`while` and :keyword:`for` statements implement
15traditional control flow constructs. :keyword:`try` specifies exception
Georg Brandl02c30562007-09-07 17:52:53 +000016handlers and/or cleanup code for a group of statements, while the
17:keyword:`with` statement allows the execution of initialization and
18finalization code around a block of code. Function and class definitions are
19also syntactically compound statements.
Georg Brandl116aa622007-08-15 14:28:22 +000020
21.. index::
22 single: clause
23 single: suite
24
25Compound statements consist of one or more 'clauses.' A clause consists of a
26header and a 'suite.' The clause headers of a particular compound statement are
27all at the same indentation level. Each clause header begins with a uniquely
28identifying keyword and ends with a colon. A suite is a group of statements
29controlled by a clause. A suite can be one or more semicolon-separated simple
30statements on the same line as the header, following the header's colon, or it
31can be one or more indented statements on subsequent lines. Only the latter
32form of suite can contain nested compound statements; the following is illegal,
33mostly because it wouldn't be clear to which :keyword:`if` clause a following
Georg Brandl02c30562007-09-07 17:52:53 +000034:keyword:`else` clause would belong::
Georg Brandl116aa622007-08-15 14:28:22 +000035
Georg Brandl6911e3c2007-09-04 07:15:32 +000036 if test1: if test2: print(x)
Georg Brandl116aa622007-08-15 14:28:22 +000037
38Also note that the semicolon binds tighter than the colon in this context, so
Georg Brandl6911e3c2007-09-04 07:15:32 +000039that in the following example, either all or none of the :func:`print` calls are
40executed::
Georg Brandl116aa622007-08-15 14:28:22 +000041
Georg Brandl6911e3c2007-09-04 07:15:32 +000042 if x < y < z: print(x); print(y); print(z)
Georg Brandl116aa622007-08-15 14:28:22 +000043
44Summarizing:
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
63Note that statements always end in a ``NEWLINE`` possibly followed by a
Georg Brandl02c30562007-09-07 17:52:53 +000064``DEDENT``. Also note that optional continuation clauses always begin with a
Georg Brandl116aa622007-08-15 14:28:22 +000065keyword 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
69The formatting of the grammar rules in the following sections places each clause
70on a separate line for clarity.
71
72
73.. _if:
Christian Heimes5b5e81c2007-12-31 16:14:33 +000074.. _elif:
75.. _else:
Georg Brandl116aa622007-08-15 14:28:22 +000076
77The :keyword:`if` statement
78===========================
79
Christian Heimesfaf2f632008-01-06 16:59:19 +000080.. index::
81 statement: if
82 keyword: elif
83 keyword: else
Georg Brandl02c30562007-09-07 17:52:53 +000084 keyword: elif
85 keyword: else
Georg Brandl116aa622007-08-15 14:28:22 +000086
87The :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 Brandl116aa622007-08-15 14:28:22 +000094It selects exactly one of the suites by evaluating the expressions one by one
95until one is found to be true (see section :ref:`booleans` for the definition of
96true 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
98false, the suite of the :keyword:`else` clause, if present, is executed.
99
100
101.. _while:
102
103The :keyword:`while` statement
104==============================
105
106.. index::
107 statement: while
Georg Brandl02c30562007-09-07 17:52:53 +0000108 keyword: else
Georg Brandl116aa622007-08-15 14:28:22 +0000109 pair: loop; statement
Christian Heimesfaf2f632008-01-06 16:59:19 +0000110 keyword: else
Georg Brandl116aa622007-08-15 14:28:22 +0000111
112The :keyword:`while` statement is used for repeated execution as long as an
113expression is true:
114
115.. productionlist::
116 while_stmt: "while" `expression` ":" `suite`
117 : ["else" ":" `suite`]
118
Georg Brandl116aa622007-08-15 14:28:22 +0000119This repeatedly tests the expression and, if it is true, executes the first
120suite; if the expression is false (which may be the first time it is tested) the
121suite of the :keyword:`else` clause, if present, is executed and the loop
122terminates.
123
124.. index::
125 statement: break
126 statement: continue
127
128A :keyword:`break` statement executed in the first suite terminates the loop
129without executing the :keyword:`else` clause's suite. A :keyword:`continue`
130statement executed in the first suite skips the rest of the suite and goes back
131to testing the expression.
132
133
134.. _for:
135
136The :keyword:`for` statement
137============================
138
139.. index::
140 statement: for
Georg Brandl02c30562007-09-07 17:52:53 +0000141 keyword: in
142 keyword: else
143 pair: target; list
Georg Brandl116aa622007-08-15 14:28:22 +0000144 pair: loop; statement
Christian Heimesfaf2f632008-01-06 16:59:19 +0000145 keyword: in
146 keyword: else
147 pair: target; list
Georg Brandl02c30562007-09-07 17:52:53 +0000148 object: sequence
Georg Brandl116aa622007-08-15 14:28:22 +0000149
150The :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 Brandl116aa622007-08-15 14:28:22 +0000157The expression list is evaluated once; it should yield an iterable object. An
158iterator is created for the result of the ``expression_list``. The suite is
159then executed once for each item provided by the iterator, in the order of
160ascending indices. Each item in turn is assigned to the target list using the
Georg Brandl02c30562007-09-07 17:52:53 +0000161standard rules for assignments (see :ref:`assignment`), and then the suite is
162executed. When the items are exhausted (which is immediately when the sequence
163is empty or an iterator raises a :exc:`StopIteration` exception), the suite in
Georg Brandl116aa622007-08-15 14:28:22 +0000164the :keyword:`else` clause, if present, is executed, and the loop terminates.
165
166.. index::
167 statement: break
168 statement: continue
169
170A :keyword:`break` statement executed in the first suite terminates the loop
171without executing the :keyword:`else` clause's suite. A :keyword:`continue`
172statement executed in the first suite skips the rest of the suite and continues
173with the next item, or with the :keyword:`else` clause if there was no next
174item.
175
176The suite may assign to the variable(s) in the target list; this does not affect
177the next item assigned to it.
178
179.. index::
180 builtin: range
Georg Brandl116aa622007-08-15 14:28:22 +0000181
Georg Brandl02c30562007-09-07 17:52:53 +0000182Names in the target list are not deleted when the loop is finished, but if the
183sequence is empty, it will not have been assigned to at all by the loop. Hint:
184the built-in function :func:`range` returns an iterator of integers suitable to
Benjamin Peterson3db5e7b2009-06-03 03:13:30 +0000185emulate the effect of Pascal's ``for i := a to b do``; e.g., ``list(range(3))``
Georg Brandl02c30562007-09-07 17:52:53 +0000186returns the list ``[0, 1, 2]``.
Georg Brandl116aa622007-08-15 14:28:22 +0000187
Georg Brandle720c0a2009-04-27 16:20:50 +0000188.. note::
Georg Brandl116aa622007-08-15 14:28:22 +0000189
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 Brandl02c30562007-09-07 17:52:53 +0000195 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 Brandl116aa622007-08-15 14:28:22 +0000197 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 Brandl02c30562007-09-07 17:52:53 +0000199 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 Brandl116aa622007-08-15 14:28:22 +0000205
Georg Brandl02c30562007-09-07 17:52:53 +0000206 for x in a[:]:
207 if x < 0: a.remove(x)
Georg Brandl116aa622007-08-15 14:28:22 +0000208
209
210.. _try:
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000211.. _except:
212.. _finally:
Georg Brandl116aa622007-08-15 14:28:22 +0000213
214The :keyword:`try` statement
215============================
216
Christian Heimesfaf2f632008-01-06 16:59:19 +0000217.. index::
218 statement: try
219 keyword: except
220 keyword: finally
Georg Brandl16174572007-09-01 12:38:06 +0000221.. index:: keyword: except
Georg Brandl116aa622007-08-15 14:28:22 +0000222
223The :keyword:`try` statement specifies exception handlers and/or cleanup code
224for a group of statements:
225
226.. productionlist::
227 try_stmt: try1_stmt | try2_stmt
228 try1_stmt: "try" ":" `suite`
Georg Brandl0068e2c2007-09-06 14:03:41 +0000229 : ("except" [`expression` ["as" `target`]] ":" `suite`)+
Georg Brandl116aa622007-08-15 14:28:22 +0000230 : ["else" ":" `suite`]
231 : ["finally" ":" `suite`]
232 try2_stmt: "try" ":" `suite`
233 : "finally" ":" `suite`
234
Christian Heimesfaf2f632008-01-06 16:59:19 +0000235
236The :keyword:`except` clause(s) specify one or more exception handlers. When no
Georg Brandl116aa622007-08-15 14:28:22 +0000237exception occurs in the :keyword:`try` clause, no exception handler is executed.
238When an exception occurs in the :keyword:`try` suite, a search for an exception
239handler is started. This search inspects the except clauses in turn until one
240is found that matches the exception. An expression-less except clause, if
241present, must be last; it matches any exception. For an except clause with an
242expression, that expression is evaluated, and the clause matches the exception
243if the resulting object is "compatible" with the exception. An object is
244compatible with an exception if it is the class or a base class of the exception
245object or a tuple containing an item compatible with the exception.
246
247If no except clause matches the exception, the search for an exception handler
248continues in the surrounding code and on the invocation stack. [#]_
249
250If the evaluation of an expression in the header of an except clause raises an
251exception, the original search for a handler is canceled and a search starts for
252the new exception in the surrounding code and on the call stack (it is treated
253as if the entire :keyword:`try` statement raised the exception).
254
255When a matching except clause is found, the exception is assigned to the target
Georg Brandl02c30562007-09-07 17:52:53 +0000256specified after the :keyword:`as` keyword in that except clause, if present, and
257the except clause's suite is executed. All except clauses must have an
258executable block. When the end of this block is reached, execution continues
259normally after the entire try statement. (This means that if two nested
260handlers exist for the same exception, and the exception occurs in the try
261clause of the inner handler, the outer handler will not handle the exception.)
262
263When an exception has been assigned using ``as target``, it is cleared at the
264end of the except clause. This is as if ::
265
266 except E as N:
267 foo
268
269was translated to ::
270
271 except E as N:
272 try:
273 foo
274 finally:
Georg Brandl02c30562007-09-07 17:52:53 +0000275 del N
276
Benjamin Peterson714b74d2010-06-29 01:30:28 +0000277This means the exception must be assigned to a different name to be able to
278refer to it after the except clause. Exceptions are cleared because with the
279traceback attached to them, they form a reference cycle with the stack frame,
280keeping all locals in that frame alive until the next garbage collection occurs.
Georg Brandl116aa622007-08-15 14:28:22 +0000281
282.. index::
283 module: sys
284 object: traceback
285
286Before an except clause's suite is executed, details about the exception are
287stored in the :mod:`sys` module and can be access via :func:`sys.exc_info`.
Georg Brandl02c30562007-09-07 17:52:53 +0000288:func:`sys.exc_info` returns a 3-tuple consisting of: ``exc_type``, the
289exception class; ``exc_value``, the exception instance; ``exc_traceback``, a
290traceback object (see section :ref:`types`) identifying the point in the program
291where the exception occurred. :func:`sys.exc_info` values are restored to their
292previous values (before the call) when returning from a function that handled an
293exception.
Georg Brandl116aa622007-08-15 14:28:22 +0000294
295.. index::
296 keyword: else
297 statement: return
298 statement: break
299 statement: continue
300
301The optional :keyword:`else` clause is executed if and when control flows off
302the end of the :keyword:`try` clause. [#]_ Exceptions in the :keyword:`else`
303clause are not handled by the preceding :keyword:`except` clauses.
304
305.. index:: keyword: finally
306
307If :keyword:`finally` is present, it specifies a 'cleanup' handler. The
308:keyword:`try` clause is executed, including any :keyword:`except` and
309:keyword:`else` clauses. If an exception occurs in any of the clauses and is
310not handled, the exception is temporarily saved. The :keyword:`finally` clause
311is executed. If there is a saved exception, it is re-raised at the end of the
312:keyword:`finally` clause. If the :keyword:`finally` clause raises another
313exception or executes a :keyword:`return` or :keyword:`break` statement, the
314saved exception is lost. The exception information is not available to the
315program during execution of the :keyword:`finally` clause.
316
317.. index::
318 statement: return
319 statement: break
320 statement: continue
321
322When a :keyword:`return`, :keyword:`break` or :keyword:`continue` statement is
323executed in the :keyword:`try` suite of a :keyword:`try`...\ :keyword:`finally`
324statement, the :keyword:`finally` clause is also executed 'on the way out.' A
325:keyword:`continue` statement is illegal in the :keyword:`finally` clause. (The
326reason is a problem with the current implementation --- this restriction may be
327lifted in the future).
328
329Additional information on exceptions can be found in section :ref:`exceptions`,
330and information on using the :keyword:`raise` statement to generate exceptions
331may be found in section :ref:`raise`.
332
333
334.. _with:
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000335.. _as:
Georg Brandl116aa622007-08-15 14:28:22 +0000336
337The :keyword:`with` statement
338=============================
339
340.. index:: statement: with
341
Georg Brandl116aa622007-08-15 14:28:22 +0000342The :keyword:`with` statement is used to wrap the execution of a block with
Georg Brandl02c30562007-09-07 17:52:53 +0000343methods defined by a context manager (see section :ref:`context-managers`).
344This allows common :keyword:`try`...\ :keyword:`except`...\ :keyword:`finally`
345usage patterns to be encapsulated for convenient reuse.
Georg Brandl116aa622007-08-15 14:28:22 +0000346
347.. productionlist::
Georg Brandl0c315622009-05-25 21:10:36 +0000348 with_stmt: "with" with_item ("," with_item)* ":" `suite`
349 with_item: `expression` ["as" `target`]
Georg Brandl116aa622007-08-15 14:28:22 +0000350
Georg Brandl0c315622009-05-25 21:10:36 +0000351The execution of the :keyword:`with` statement with one "item" proceeds as follows:
Georg Brandl116aa622007-08-15 14:28:22 +0000352
Georg Brandl57a5e3f2010-10-06 08:54:16 +0000353#. The context expression (the expression given in the :token:`with_item`) is
354 evaluated to obtain a context manager.
Georg Brandl116aa622007-08-15 14:28:22 +0000355
356#. The context manager's :meth:`__enter__` method is invoked.
357
358#. If a target was included in the :keyword:`with` statement, the return value
359 from :meth:`__enter__` is assigned to it.
360
361 .. note::
362
Georg Brandl02c30562007-09-07 17:52:53 +0000363 The :keyword:`with` statement guarantees that if the :meth:`__enter__`
364 method returns without an error, then :meth:`__exit__` will always be
365 called. Thus, if an error occurs during the assignment to the target
366 list, it will be treated the same as an error occurring within the suite
367 would be. See step 5 below.
Georg Brandl116aa622007-08-15 14:28:22 +0000368
369#. The suite is executed.
370
Georg Brandl02c30562007-09-07 17:52:53 +0000371#. The context manager's :meth:`__exit__` method is invoked. If an exception
Georg Brandl116aa622007-08-15 14:28:22 +0000372 caused the suite to be exited, its type, value, and traceback are passed as
373 arguments to :meth:`__exit__`. Otherwise, three :const:`None` arguments are
374 supplied.
375
376 If the suite was exited due to an exception, and the return value from the
Georg Brandl02c30562007-09-07 17:52:53 +0000377 :meth:`__exit__` method was false, the exception is reraised. If the return
Georg Brandl116aa622007-08-15 14:28:22 +0000378 value was true, the exception is suppressed, and execution continues with the
379 statement following the :keyword:`with` statement.
380
Georg Brandl02c30562007-09-07 17:52:53 +0000381 If the suite was exited for any reason other than an exception, the return
382 value from :meth:`__exit__` is ignored, and execution proceeds at the normal
383 location for the kind of exit that was taken.
Georg Brandl116aa622007-08-15 14:28:22 +0000384
Georg Brandl0c315622009-05-25 21:10:36 +0000385With more than one item, the context managers are processed as if multiple
386:keyword:`with` statements were nested::
387
388 with A() as a, B() as b:
389 suite
390
391is equivalent to ::
392
393 with A() as a:
394 with B() as b:
395 suite
396
397.. versionchanged:: 3.1
398 Support for multiple context expressions.
399
Georg Brandl116aa622007-08-15 14:28:22 +0000400.. seealso::
401
402 :pep:`0343` - The "with" statement
403 The specification, background, and examples for the Python :keyword:`with`
404 statement.
405
406
407.. _function:
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000408.. _def:
Georg Brandl116aa622007-08-15 14:28:22 +0000409
410Function definitions
411====================
412
413.. index::
Georg Brandl116aa622007-08-15 14:28:22 +0000414 statement: def
Christian Heimesfaf2f632008-01-06 16:59:19 +0000415 pair: function; definition
416 pair: function; name
417 pair: name; binding
Georg Brandl116aa622007-08-15 14:28:22 +0000418 object: user-defined function
419 object: function
Georg Brandl02c30562007-09-07 17:52:53 +0000420 pair: function; name
421 pair: name; binding
Georg Brandl116aa622007-08-15 14:28:22 +0000422
423A function definition defines a user-defined function object (see section
424:ref:`types`):
425
426.. productionlist::
Georg Brandl33d1ae82008-09-21 07:40:25 +0000427 funcdef: [`decorators`] "def" `funcname` "(" [`parameter_list`] ")" ["->" `expression`] ":" `suite`
Georg Brandl116aa622007-08-15 14:28:22 +0000428 decorators: `decorator`+
429 decorator: "@" `dotted_name` ["(" [`argument_list` [","]] ")"] NEWLINE
430 dotted_name: `identifier` ("." `identifier`)*
431 parameter_list: (`defparameter` ",")*
432 : ( "*" [`parameter`] ("," `defparameter`)*
433 : [, "**" `parameter`]
434 : | "**" `parameter`
435 : | `defparameter` [","] )
436 parameter: `identifier` [":" `expression`]
437 defparameter: `parameter` ["=" `expression`]
438 funcname: `identifier`
439
Georg Brandl116aa622007-08-15 14:28:22 +0000440
441A function definition is an executable statement. Its execution binds the
442function name in the current local namespace to a function object (a wrapper
443around the executable code for the function). This function object contains a
444reference to the current global namespace as the global namespace to be used
445when the function is called.
446
447The function definition does not execute the function body; this gets executed
Georg Brandl3dbca812008-07-23 16:10:53 +0000448only when the function is called. [#]_
Georg Brandl116aa622007-08-15 14:28:22 +0000449
Christian Heimesdae2a892008-04-19 00:55:37 +0000450.. index::
451 statement: @
452
Christian Heimesd8654cf2007-12-02 15:22:16 +0000453A function definition may be wrapped by one or more :term:`decorator` expressions.
Georg Brandl116aa622007-08-15 14:28:22 +0000454Decorator expressions are evaluated when the function is defined, in the scope
455that contains the function definition. The result must be a callable, which is
456invoked with the function object as the only argument. The returned value is
457bound to the function name instead of the function object. Multiple decorators
Georg Brandl02c30562007-09-07 17:52:53 +0000458are applied in nested fashion. For example, the following code ::
Georg Brandl116aa622007-08-15 14:28:22 +0000459
460 @f1(arg)
461 @f2
462 def func(): pass
463
Georg Brandl02c30562007-09-07 17:52:53 +0000464is equivalent to ::
Georg Brandl116aa622007-08-15 14:28:22 +0000465
466 def func(): pass
467 func = f1(arg)(f2(func))
468
469.. index:: triple: default; parameter; value
470
471When one or more parameters have the form *parameter* ``=`` *expression*, the
472function is said to have "default parameter values." For a parameter with a
473default value, the corresponding argument may be omitted from a call, in which
474case the parameter's default value is substituted. If a parameter has a default
Georg Brandl02c30562007-09-07 17:52:53 +0000475value, all following parameters up until the "``*``" must also have a default
476value --- this is a syntactic restriction that is not expressed by the grammar.
Georg Brandl116aa622007-08-15 14:28:22 +0000477
478**Default parameter values are evaluated when the function definition is
Georg Brandl02c30562007-09-07 17:52:53 +0000479executed.** This means that the expression is evaluated once, when the function
Georg Brandl116aa622007-08-15 14:28:22 +0000480is defined, and that that same "pre-computed" value is used for each call. This
481is especially important to understand when a default parameter is a mutable
482object, such as a list or a dictionary: if the function modifies the object
483(e.g. by appending an item to a list), the default value is in effect modified.
Georg Brandl02c30562007-09-07 17:52:53 +0000484This is generally not what was intended. A way around this is to use ``None``
Georg Brandl116aa622007-08-15 14:28:22 +0000485as the default, and explicitly test for it in the body of the function, e.g.::
486
487 def whats_on_the_telly(penguin=None):
488 if penguin is None:
489 penguin = []
490 penguin.append("property of the zoo")
491 return penguin
492
Christian Heimesdae2a892008-04-19 00:55:37 +0000493.. index::
494 statement: *
495 statement: **
496
497Function call semantics are described in more detail in section :ref:`calls`. A
Georg Brandl116aa622007-08-15 14:28:22 +0000498function call always assigns values to all parameters mentioned in the parameter
499list, either from position arguments, from keyword arguments, or from default
500values. If the form "``*identifier``" is present, it is initialized to a tuple
501receiving any excess positional parameters, defaulting to the empty tuple. If
502the form "``**identifier``" is present, it is initialized to a new dictionary
503receiving any excess keyword arguments, defaulting to a new empty dictionary.
504Parameters after "``*``" or "``*identifier``" are keyword-only parameters and
505may only be passed used keyword arguments.
506
507.. index:: pair: function; annotations
508
509Parameters may have annotations of the form "``: expression``" following the
Georg Brandl02c30562007-09-07 17:52:53 +0000510parameter name. Any parameter may have an annotation even those of the form
511``*identifier`` or ``**identifier``. Functions may have "return" annotation of
512the form "``-> expression``" after the parameter list. These annotations can be
Georg Brandl116aa622007-08-15 14:28:22 +0000513any valid Python expression and are evaluated when the function definition is
Georg Brandl02c30562007-09-07 17:52:53 +0000514executed. Annotations may be evaluated in a different order than they appear in
515the source code. The presence of annotations does not change the semantics of a
516function. The annotation values are available as values of a dictionary keyed
Georg Brandl116aa622007-08-15 14:28:22 +0000517by the parameters' names in the :attr:`__annotations__` attribute of the
518function object.
519
520.. index:: pair: lambda; form
521
522It is also possible to create anonymous functions (functions not bound to a
523name), for immediate use in expressions. This uses lambda forms, described in
524section :ref:`lambda`. Note that the lambda form is merely a shorthand for a
525simplified function definition; a function defined in a ":keyword:`def`"
526statement can be passed around or assigned to another name just like a function
527defined by a lambda form. The ":keyword:`def`" form is actually more powerful
528since it allows the execution of multiple statements and annotations.
529
530**Programmer's note:** Functions are first-class objects. A "``def``" form
531executed inside a function definition defines a local function that can be
532returned or passed around. Free variables used in the nested function can
533access the local variables of the function containing the def. See section
534:ref:`naming` for details.
535
536
537.. _class:
538
539Class definitions
540=================
541
542.. index::
Georg Brandl02c30562007-09-07 17:52:53 +0000543 object: class
Christian Heimesfaf2f632008-01-06 16:59:19 +0000544 statement: class
545 pair: class; definition
Georg Brandl116aa622007-08-15 14:28:22 +0000546 pair: class; name
547 pair: name; binding
548 pair: execution; frame
Christian Heimesfaf2f632008-01-06 16:59:19 +0000549 single: inheritance
Georg Brandl3dbca812008-07-23 16:10:53 +0000550 single: docstring
Georg Brandl116aa622007-08-15 14:28:22 +0000551
Georg Brandl02c30562007-09-07 17:52:53 +0000552A class definition defines a class object (see section :ref:`types`):
553
Georg Brandl02c30562007-09-07 17:52:53 +0000554.. productionlist::
555 classdef: [`decorators`] "class" `classname` [`inheritance`] ":" `suite`
Georg Brandl4009c9e2010-10-06 08:26:09 +0000556 inheritance: "(" [`argument_list` [","] ] ")"
Georg Brandl02c30562007-09-07 17:52:53 +0000557 classname: `identifier`
558
559
Georg Brandl4009c9e2010-10-06 08:26:09 +0000560A class definition is an executable statement. The inheritance list usually
561gives a list of base classes (see :ref:`metaclasses` for more advanced uses), so
562each item in the list should evaluate to a class object which allows
563subclassing.
564
565The class's suite is then executed in a new execution frame (see :ref:`naming`),
566using a newly created local namespace and the original global namespace.
567(Usually, the suite contains mostly function definitions.) When the class's
568suite finishes execution, its execution frame is discarded but its local
569namespace is saved. [#]_ A class object is then created using the inheritance
570list for the base classes and the saved local namespace for the attribute
571dictionary. The class name is bound to this class object in the original local
572namespace.
573
574Class creation can be customized heavily using :ref:`metaclasses <metaclasses>`.
Georg Brandl116aa622007-08-15 14:28:22 +0000575
Georg Brandl02c30562007-09-07 17:52:53 +0000576Classes can also be decorated; as with functions, ::
577
578 @f1(arg)
579 @f2
580 class Foo: pass
581
582is equivalent to ::
583
584 class Foo: pass
585 Foo = f1(arg)(f2(Foo))
586
Georg Brandl116aa622007-08-15 14:28:22 +0000587**Programmer's note:** Variables defined in the class definition are class
Georg Brandl4009c9e2010-10-06 08:26:09 +0000588attributes; they are shared by instances. Instance attributes can be set in a
589method with ``self.name = value``. Both class and instance attributes are
590accessible through the notation "``self.name``", and an instance attribute hides
591a class attribute with the same name when accessed in this way. Class
592attributes can be used as defaults for instance attributes, but using mutable
593values there can lead to unexpected results. :ref:`Descriptors <descriptors>`
594can be used to create instance variables with different implementation details.
Georg Brandl85eb8c12007-08-31 16:33:38 +0000595
Georg Brandl116aa622007-08-15 14:28:22 +0000596
Georg Brandl02c30562007-09-07 17:52:53 +0000597.. seealso::
598
Georg Brandl4009c9e2010-10-06 08:26:09 +0000599 :pep:`3116` - Metaclasses in Python 3
Georg Brandl02c30562007-09-07 17:52:53 +0000600 :pep:`3129` - Class Decorators
601
Georg Brandl02c30562007-09-07 17:52:53 +0000602
Georg Brandl116aa622007-08-15 14:28:22 +0000603.. rubric:: Footnotes
604
Christian Heimesc3f30c42008-02-22 16:37:40 +0000605.. [#] The exception is propagated to the invocation stack only if there is no
Georg Brandl116aa622007-08-15 14:28:22 +0000606 :keyword:`finally` clause that negates the exception.
607
Georg Brandl1e8cbe32009-10-27 20:23:20 +0000608.. [#] Currently, control "flows off the end" except in the case of an exception
609 or the execution of a :keyword:`return`, :keyword:`continue`, or
610 :keyword:`break` statement.
Georg Brandl3dbca812008-07-23 16:10:53 +0000611
612.. [#] A string literal appearing as the first statement in the function body is
613 transformed into the function's ``__doc__`` attribute and therefore the
614 function's :term:`docstring`.
615
616.. [#] A string literal appearing as the first statement in the class body is
617 transformed into the namespace's ``__doc__`` item and therefore the class's
618 :term:`docstring`.