blob: 5dd17eb0305a3950063be7e23597114439babf75 [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
Raymond Hettingeraa7886d2014-05-26 22:20:37 -070025A compound statement consists of one or more 'clauses.' A clause consists of a
Georg Brandl116aa622007-08-15 14:28:22 +000026header 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
Raymond Hettingeraa7886d2014-05-26 22:20:37 -070032form of a suite can contain nested compound statements; the following is illegal,
Georg Brandl116aa622007-08-15 14:28:22 +000033mostly 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
Raymond Hettingeraa7886d2014-05-26 22:20:37 -0700159then executed once for each item provided by the iterator, in the order returned
160by the iterator. 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
Raymond Hettingeraa7886d2014-05-26 22:20:37 -0700173with the next item, or with the :keyword:`else` clause if there is no next
Georg Brandl116aa622007-08-15 14:28:22 +0000174item.
175
Raymond Hettingeraa7886d2014-05-26 22:20:37 -0700176The for-loop makes assignments to the variables(s) in the target list.
177This overwrites all previous assignments to those variables including
178those made in the suite of the for-loop::
179
180 for i in range(10):
181 print(i)
182 i = 5 # this will not affect the for-loop
Zachary Ware2f78b842014-06-03 09:32:40 -0500183 # because i will be overwritten with the next
Raymond Hettingeraa7886d2014-05-26 22:20:37 -0700184 # index in the range
185
Georg Brandl116aa622007-08-15 14:28:22 +0000186
187.. index::
188 builtin: range
Georg Brandl116aa622007-08-15 14:28:22 +0000189
Georg Brandl02c30562007-09-07 17:52:53 +0000190Names in the target list are not deleted when the loop is finished, but if the
Raymond Hettingeraa7886d2014-05-26 22:20:37 -0700191sequence is empty, they will not have been assigned to at all by the loop. Hint:
Georg Brandl02c30562007-09-07 17:52:53 +0000192the built-in function :func:`range` returns an iterator of integers suitable to
Benjamin Peterson3db5e7b2009-06-03 03:13:30 +0000193emulate the effect of Pascal's ``for i := a to b do``; e.g., ``list(range(3))``
Georg Brandl02c30562007-09-07 17:52:53 +0000194returns the list ``[0, 1, 2]``.
Georg Brandl116aa622007-08-15 14:28:22 +0000195
Georg Brandle720c0a2009-04-27 16:20:50 +0000196.. note::
Georg Brandl116aa622007-08-15 14:28:22 +0000197
198 .. index::
199 single: loop; over mutable sequence
200 single: mutable sequence; loop over
201
202 There is a subtlety when the sequence is being modified by the loop (this can
Georg Brandl02c30562007-09-07 17:52:53 +0000203 only occur for mutable sequences, i.e. lists). An internal counter is used
204 to keep track of which item is used next, and this is incremented on each
Georg Brandl116aa622007-08-15 14:28:22 +0000205 iteration. When this counter has reached the length of the sequence the loop
206 terminates. This means that if the suite deletes the current (or a previous)
Georg Brandl02c30562007-09-07 17:52:53 +0000207 item from the sequence, the next item will be skipped (since it gets the
208 index of the current item which has already been treated). Likewise, if the
209 suite inserts an item in the sequence before the current item, the current
210 item will be treated again the next time through the loop. This can lead to
211 nasty bugs that can be avoided by making a temporary copy using a slice of
212 the whole sequence, e.g., ::
Georg Brandl116aa622007-08-15 14:28:22 +0000213
Georg Brandl02c30562007-09-07 17:52:53 +0000214 for x in a[:]:
215 if x < 0: a.remove(x)
Georg Brandl116aa622007-08-15 14:28:22 +0000216
217
218.. _try:
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000219.. _except:
220.. _finally:
Georg Brandl116aa622007-08-15 14:28:22 +0000221
222The :keyword:`try` statement
223============================
224
Christian Heimesfaf2f632008-01-06 16:59:19 +0000225.. index::
226 statement: try
227 keyword: except
228 keyword: finally
Georg Brandl16174572007-09-01 12:38:06 +0000229.. index:: keyword: except
Georg Brandl116aa622007-08-15 14:28:22 +0000230
231The :keyword:`try` statement specifies exception handlers and/or cleanup code
232for a group of statements:
233
234.. productionlist::
235 try_stmt: try1_stmt | try2_stmt
236 try1_stmt: "try" ":" `suite`
Terry Jan Reedy65e3ecb2014-08-23 19:29:47 -0400237 : ("except" [`expression` ["as" `identifier`]] ":" `suite`)+
Georg Brandl116aa622007-08-15 14:28:22 +0000238 : ["else" ":" `suite`]
239 : ["finally" ":" `suite`]
240 try2_stmt: "try" ":" `suite`
241 : "finally" ":" `suite`
242
Christian Heimesfaf2f632008-01-06 16:59:19 +0000243
244The :keyword:`except` clause(s) specify one or more exception handlers. When no
Georg Brandl116aa622007-08-15 14:28:22 +0000245exception occurs in the :keyword:`try` clause, no exception handler is executed.
246When an exception occurs in the :keyword:`try` suite, a search for an exception
247handler is started. This search inspects the except clauses in turn until one
248is found that matches the exception. An expression-less except clause, if
249present, must be last; it matches any exception. For an except clause with an
250expression, that expression is evaluated, and the clause matches the exception
251if the resulting object is "compatible" with the exception. An object is
252compatible with an exception if it is the class or a base class of the exception
253object or a tuple containing an item compatible with the exception.
254
255If no except clause matches the exception, the search for an exception handler
256continues in the surrounding code and on the invocation stack. [#]_
257
258If the evaluation of an expression in the header of an except clause raises an
259exception, the original search for a handler is canceled and a search starts for
260the new exception in the surrounding code and on the call stack (it is treated
261as if the entire :keyword:`try` statement raised the exception).
262
263When a matching except clause is found, the exception is assigned to the target
Georg Brandl02c30562007-09-07 17:52:53 +0000264specified after the :keyword:`as` keyword in that except clause, if present, and
265the except clause's suite is executed. All except clauses must have an
266executable block. When the end of this block is reached, execution continues
267normally after the entire try statement. (This means that if two nested
268handlers exist for the same exception, and the exception occurs in the try
269clause of the inner handler, the outer handler will not handle the exception.)
270
271When an exception has been assigned using ``as target``, it is cleared at the
272end of the except clause. This is as if ::
273
274 except E as N:
275 foo
276
277was translated to ::
278
279 except E as N:
280 try:
281 foo
282 finally:
Georg Brandl02c30562007-09-07 17:52:53 +0000283 del N
284
Benjamin Petersonfb288da2010-06-29 01:27:35 +0000285This means the exception must be assigned to a different name to be able to
286refer to it after the except clause. Exceptions are cleared because with the
287traceback attached to them, they form a reference cycle with the stack frame,
288keeping all locals in that frame alive until the next garbage collection occurs.
Georg Brandl116aa622007-08-15 14:28:22 +0000289
290.. index::
291 module: sys
292 object: traceback
293
294Before an except clause's suite is executed, details about the exception are
Raymond Hettingeraa7886d2014-05-26 22:20:37 -0700295stored in the :mod:`sys` module and can be accessed via :func:`sys.exc_info`.
Georg Brandlb30f3302011-01-06 09:23:56 +0000296:func:`sys.exc_info` returns a 3-tuple consisting of the exception class, the
297exception instance and a traceback object (see section :ref:`types`) identifying
298the point in the program where the exception occurred. :func:`sys.exc_info`
299values are restored to their previous values (before the call) when returning
300from a function that handled an exception.
Georg Brandl116aa622007-08-15 14:28:22 +0000301
302.. index::
303 keyword: else
304 statement: return
305 statement: break
306 statement: continue
307
308The optional :keyword:`else` clause is executed if and when control flows off
309the end of the :keyword:`try` clause. [#]_ Exceptions in the :keyword:`else`
310clause are not handled by the preceding :keyword:`except` clauses.
311
312.. index:: keyword: finally
313
314If :keyword:`finally` is present, it specifies a 'cleanup' handler. The
315:keyword:`try` clause is executed, including any :keyword:`except` and
316:keyword:`else` clauses. If an exception occurs in any of the clauses and is
317not handled, the exception is temporarily saved. The :keyword:`finally` clause
Mark Dickinson05ee5812012-09-24 20:16:38 +0100318is executed. If there is a saved exception it is re-raised at the end of the
319:keyword:`finally` clause. If the :keyword:`finally` clause raises another
320exception, the saved exception is set as the context of the new exception.
321If the :keyword:`finally` clause executes a :keyword:`return` or :keyword:`break`
322statement, the saved exception is discarded::
Andrew Svetlovf158d862012-08-14 15:38:15 +0300323
Zachary Ware9fafc9f2014-05-06 09:18:17 -0500324 >>> def f():
325 ... try:
326 ... 1/0
327 ... finally:
328 ... return 42
329 ...
330 >>> f()
331 42
Andrew Svetlovf158d862012-08-14 15:38:15 +0300332
333The exception information is not available to the program during execution of
334the :keyword:`finally` clause.
Georg Brandl116aa622007-08-15 14:28:22 +0000335
336.. index::
337 statement: return
338 statement: break
339 statement: continue
340
341When a :keyword:`return`, :keyword:`break` or :keyword:`continue` statement is
342executed in the :keyword:`try` suite of a :keyword:`try`...\ :keyword:`finally`
343statement, the :keyword:`finally` clause is also executed 'on the way out.' A
344:keyword:`continue` statement is illegal in the :keyword:`finally` clause. (The
345reason is a problem with the current implementation --- this restriction may be
346lifted in the future).
347
Zachary Ware8edd5322014-05-06 09:07:13 -0500348The return value of a function is determined by the last :keyword:`return`
349statement executed. Since the :keyword:`finally` clause always executes, a
350:keyword:`return` statement executed in the :keyword:`finally` clause will
351always be the last one executed::
352
353 >>> def foo():
354 ... try:
355 ... return 'try'
356 ... finally:
357 ... return 'finally'
358 ...
359 >>> foo()
360 'finally'
361
Georg Brandl116aa622007-08-15 14:28:22 +0000362Additional information on exceptions can be found in section :ref:`exceptions`,
363and information on using the :keyword:`raise` statement to generate exceptions
364may be found in section :ref:`raise`.
365
366
367.. _with:
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000368.. _as:
Georg Brandl116aa622007-08-15 14:28:22 +0000369
370The :keyword:`with` statement
371=============================
372
Terry Jan Reedy7c895ed2014-04-29 00:58:56 -0400373.. index::
374 statement: with
375 single: as; with statement
Georg Brandl116aa622007-08-15 14:28:22 +0000376
Georg Brandl116aa622007-08-15 14:28:22 +0000377The :keyword:`with` statement is used to wrap the execution of a block with
Georg Brandl02c30562007-09-07 17:52:53 +0000378methods defined by a context manager (see section :ref:`context-managers`).
379This allows common :keyword:`try`...\ :keyword:`except`...\ :keyword:`finally`
380usage patterns to be encapsulated for convenient reuse.
Georg Brandl116aa622007-08-15 14:28:22 +0000381
382.. productionlist::
Georg Brandl0c315622009-05-25 21:10:36 +0000383 with_stmt: "with" with_item ("," with_item)* ":" `suite`
384 with_item: `expression` ["as" `target`]
Georg Brandl116aa622007-08-15 14:28:22 +0000385
Georg Brandl0c315622009-05-25 21:10:36 +0000386The execution of the :keyword:`with` statement with one "item" proceeds as follows:
Georg Brandl116aa622007-08-15 14:28:22 +0000387
Georg Brandl3387f482010-09-03 22:40:02 +0000388#. The context expression (the expression given in the :token:`with_item`) is
389 evaluated to obtain a context manager.
Georg Brandl116aa622007-08-15 14:28:22 +0000390
Benjamin Peterson876b2f22009-06-28 03:18:59 +0000391#. The context manager's :meth:`__exit__` is loaded for later use.
392
Georg Brandl116aa622007-08-15 14:28:22 +0000393#. The context manager's :meth:`__enter__` method is invoked.
394
395#. If a target was included in the :keyword:`with` statement, the return value
396 from :meth:`__enter__` is assigned to it.
397
398 .. note::
399
Georg Brandl02c30562007-09-07 17:52:53 +0000400 The :keyword:`with` statement guarantees that if the :meth:`__enter__`
401 method returns without an error, then :meth:`__exit__` will always be
Benjamin Peterson876b2f22009-06-28 03:18:59 +0000402 called. Thus, if an error occurs during the assignment to the target list,
403 it will be treated the same as an error occurring within the suite would
404 be. See step 6 below.
Georg Brandl116aa622007-08-15 14:28:22 +0000405
406#. The suite is executed.
407
Georg Brandl02c30562007-09-07 17:52:53 +0000408#. The context manager's :meth:`__exit__` method is invoked. If an exception
Georg Brandl116aa622007-08-15 14:28:22 +0000409 caused the suite to be exited, its type, value, and traceback are passed as
410 arguments to :meth:`__exit__`. Otherwise, three :const:`None` arguments are
411 supplied.
412
413 If the suite was exited due to an exception, and the return value from the
Georg Brandl02c30562007-09-07 17:52:53 +0000414 :meth:`__exit__` method was false, the exception is reraised. If the return
Georg Brandl116aa622007-08-15 14:28:22 +0000415 value was true, the exception is suppressed, and execution continues with the
416 statement following the :keyword:`with` statement.
417
Georg Brandl02c30562007-09-07 17:52:53 +0000418 If the suite was exited for any reason other than an exception, the return
419 value from :meth:`__exit__` is ignored, and execution proceeds at the normal
420 location for the kind of exit that was taken.
Georg Brandl116aa622007-08-15 14:28:22 +0000421
Georg Brandl0c315622009-05-25 21:10:36 +0000422With more than one item, the context managers are processed as if multiple
423:keyword:`with` statements were nested::
424
425 with A() as a, B() as b:
426 suite
427
428is equivalent to ::
429
430 with A() as a:
431 with B() as b:
432 suite
433
434.. versionchanged:: 3.1
435 Support for multiple context expressions.
436
Georg Brandl116aa622007-08-15 14:28:22 +0000437.. seealso::
438
439 :pep:`0343` - The "with" statement
440 The specification, background, and examples for the Python :keyword:`with`
441 statement.
442
443
Chris Jerdonekb4309942012-12-25 14:54:44 -0800444.. index::
445 single: parameter; function definition
446
Georg Brandl116aa622007-08-15 14:28:22 +0000447.. _function:
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000448.. _def:
Georg Brandl116aa622007-08-15 14:28:22 +0000449
450Function definitions
451====================
452
453.. index::
Georg Brandl116aa622007-08-15 14:28:22 +0000454 statement: def
Christian Heimesfaf2f632008-01-06 16:59:19 +0000455 pair: function; definition
456 pair: function; name
457 pair: name; binding
Georg Brandl116aa622007-08-15 14:28:22 +0000458 object: user-defined function
459 object: function
Georg Brandl02c30562007-09-07 17:52:53 +0000460 pair: function; name
461 pair: name; binding
Georg Brandl116aa622007-08-15 14:28:22 +0000462
463A function definition defines a user-defined function object (see section
464:ref:`types`):
465
466.. productionlist::
Georg Brandl33d1ae82008-09-21 07:40:25 +0000467 funcdef: [`decorators`] "def" `funcname` "(" [`parameter_list`] ")" ["->" `expression`] ":" `suite`
Georg Brandl116aa622007-08-15 14:28:22 +0000468 decorators: `decorator`+
Benjamin Peterson57f97f42011-12-23 20:01:43 -0600469 decorator: "@" `dotted_name` ["(" [`parameter_list` [","]] ")"] NEWLINE
Georg Brandl116aa622007-08-15 14:28:22 +0000470 dotted_name: `identifier` ("." `identifier`)*
471 parameter_list: (`defparameter` ",")*
Raymond Hettingeraa7886d2014-05-26 22:20:37 -0700472 : | "*" [`parameter`] ("," `defparameter`)* ["," "**" `parameter`]
Georg Brandl116aa622007-08-15 14:28:22 +0000473 : | "**" `parameter`
474 : | `defparameter` [","] )
475 parameter: `identifier` [":" `expression`]
476 defparameter: `parameter` ["=" `expression`]
477 funcname: `identifier`
478
Georg Brandl116aa622007-08-15 14:28:22 +0000479
480A function definition is an executable statement. Its execution binds the
481function name in the current local namespace to a function object (a wrapper
482around the executable code for the function). This function object contains a
483reference to the current global namespace as the global namespace to be used
484when the function is called.
485
486The function definition does not execute the function body; this gets executed
Georg Brandl3dbca812008-07-23 16:10:53 +0000487only when the function is called. [#]_
Georg Brandl116aa622007-08-15 14:28:22 +0000488
Christian Heimesdae2a892008-04-19 00:55:37 +0000489.. index::
490 statement: @
491
Christian Heimesd8654cf2007-12-02 15:22:16 +0000492A function definition may be wrapped by one or more :term:`decorator` expressions.
Georg Brandl116aa622007-08-15 14:28:22 +0000493Decorator expressions are evaluated when the function is defined, in the scope
494that contains the function definition. The result must be a callable, which is
495invoked with the function object as the only argument. The returned value is
496bound to the function name instead of the function object. Multiple decorators
Georg Brandl02c30562007-09-07 17:52:53 +0000497are applied in nested fashion. For example, the following code ::
Georg Brandl116aa622007-08-15 14:28:22 +0000498
499 @f1(arg)
500 @f2
501 def func(): pass
502
Georg Brandl02c30562007-09-07 17:52:53 +0000503is equivalent to ::
Georg Brandl116aa622007-08-15 14:28:22 +0000504
505 def func(): pass
506 func = f1(arg)(f2(func))
507
Chris Jerdonekb4309942012-12-25 14:54:44 -0800508.. index::
509 triple: default; parameter; value
510 single: argument; function definition
Georg Brandl116aa622007-08-15 14:28:22 +0000511
Chris Jerdonekb4309942012-12-25 14:54:44 -0800512When one or more :term:`parameters <parameter>` have the form *parameter* ``=``
513*expression*, the function is said to have "default parameter values." For a
514parameter with a default value, the corresponding :term:`argument` may be
515omitted from a call, in which
Georg Brandl116aa622007-08-15 14:28:22 +0000516case the parameter's default value is substituted. If a parameter has a default
Georg Brandl02c30562007-09-07 17:52:53 +0000517value, all following parameters up until the "``*``" must also have a default
518value --- this is a syntactic restriction that is not expressed by the grammar.
Georg Brandl116aa622007-08-15 14:28:22 +0000519
Benjamin Peterson1ef876c2013-02-10 09:29:59 -0500520**Default parameter values are evaluated from left to right when the function
521definition is executed.** This means that the expression is evaluated once, when
522the function is defined, and that the same "pre-computed" value is used for each
523call. This is especially important to understand when a default parameter is a
524mutable object, such as a list or a dictionary: if the function modifies the
525object (e.g. by appending an item to a list), the default value is in effect
526modified. This is generally not what was intended. A way around this is to use
527``None`` as the default, and explicitly test for it in the body of the function,
528e.g.::
Georg Brandl116aa622007-08-15 14:28:22 +0000529
530 def whats_on_the_telly(penguin=None):
531 if penguin is None:
532 penguin = []
533 penguin.append("property of the zoo")
534 return penguin
535
Christian Heimesdae2a892008-04-19 00:55:37 +0000536.. index::
537 statement: *
538 statement: **
539
540Function call semantics are described in more detail in section :ref:`calls`. A
Georg Brandl116aa622007-08-15 14:28:22 +0000541function call always assigns values to all parameters mentioned in the parameter
542list, either from position arguments, from keyword arguments, or from default
543values. If the form "``*identifier``" is present, it is initialized to a tuple
544receiving any excess positional parameters, defaulting to the empty tuple. If
545the form "``**identifier``" is present, it is initialized to a new dictionary
546receiving any excess keyword arguments, defaulting to a new empty dictionary.
547Parameters after "``*``" or "``*identifier``" are keyword-only parameters and
548may only be passed used keyword arguments.
549
550.. index:: pair: function; annotations
551
552Parameters may have annotations of the form "``: expression``" following the
Georg Brandl02c30562007-09-07 17:52:53 +0000553parameter name. Any parameter may have an annotation even those of the form
554``*identifier`` or ``**identifier``. Functions may have "return" annotation of
555the form "``-> expression``" after the parameter list. These annotations can be
Georg Brandl116aa622007-08-15 14:28:22 +0000556any valid Python expression and are evaluated when the function definition is
Georg Brandl02c30562007-09-07 17:52:53 +0000557executed. Annotations may be evaluated in a different order than they appear in
558the source code. The presence of annotations does not change the semantics of a
559function. The annotation values are available as values of a dictionary keyed
Georg Brandl116aa622007-08-15 14:28:22 +0000560by the parameters' names in the :attr:`__annotations__` attribute of the
561function object.
562
Georg Brandl242e6a02013-10-06 10:28:39 +0200563.. index:: pair: lambda; expression
Georg Brandl116aa622007-08-15 14:28:22 +0000564
565It is also possible to create anonymous functions (functions not bound to a
Georg Brandl242e6a02013-10-06 10:28:39 +0200566name), for immediate use in expressions. This uses lambda expressions, described in
567section :ref:`lambda`. Note that the lambda expression is merely a shorthand for a
Georg Brandl116aa622007-08-15 14:28:22 +0000568simplified function definition; a function defined in a ":keyword:`def`"
569statement can be passed around or assigned to another name just like a function
Georg Brandl242e6a02013-10-06 10:28:39 +0200570defined by a lambda expression. The ":keyword:`def`" form is actually more powerful
Georg Brandl116aa622007-08-15 14:28:22 +0000571since it allows the execution of multiple statements and annotations.
572
Georg Brandl242e6a02013-10-06 10:28:39 +0200573**Programmer's note:** Functions are first-class objects. A "``def``" statement
Georg Brandl116aa622007-08-15 14:28:22 +0000574executed inside a function definition defines a local function that can be
575returned or passed around. Free variables used in the nested function can
576access the local variables of the function containing the def. See section
577:ref:`naming` for details.
578
Georg Brandl64a40942012-03-10 09:22:47 +0100579.. seealso::
580
581 :pep:`3107` - Function Annotations
582 The original specification for function annotations.
583
Georg Brandl116aa622007-08-15 14:28:22 +0000584
585.. _class:
586
587Class definitions
588=================
589
590.. index::
Georg Brandl02c30562007-09-07 17:52:53 +0000591 object: class
Christian Heimesfaf2f632008-01-06 16:59:19 +0000592 statement: class
593 pair: class; definition
Georg Brandl116aa622007-08-15 14:28:22 +0000594 pair: class; name
595 pair: name; binding
596 pair: execution; frame
Christian Heimesfaf2f632008-01-06 16:59:19 +0000597 single: inheritance
Georg Brandl3dbca812008-07-23 16:10:53 +0000598 single: docstring
Georg Brandl116aa622007-08-15 14:28:22 +0000599
Georg Brandl02c30562007-09-07 17:52:53 +0000600A class definition defines a class object (see section :ref:`types`):
601
Georg Brandl02c30562007-09-07 17:52:53 +0000602.. productionlist::
603 classdef: [`decorators`] "class" `classname` [`inheritance`] ":" `suite`
Benjamin Petersonad173582011-12-23 20:00:56 -0600604 inheritance: "(" [`parameter_list`] ")"
Georg Brandl02c30562007-09-07 17:52:53 +0000605 classname: `identifier`
606
Georg Brandl65e5f802010-08-02 18:10:13 +0000607A class definition is an executable statement. The inheritance list usually
608gives a list of base classes (see :ref:`metaclasses` for more advanced uses), so
609each item in the list should evaluate to a class object which allows
Éric Araujo28053fb2010-11-22 03:09:19 +0000610subclassing. Classes without an inheritance list inherit, by default, from the
611base class :class:`object`; hence, ::
612
613 class Foo:
614 pass
615
616is equivalent to ::
617
618 class Foo(object):
619 pass
Georg Brandl65e5f802010-08-02 18:10:13 +0000620
621The class's suite is then executed in a new execution frame (see :ref:`naming`),
622using a newly created local namespace and the original global namespace.
623(Usually, the suite contains mostly function definitions.) When the class's
624suite finishes execution, its execution frame is discarded but its local
625namespace is saved. [#]_ A class object is then created using the inheritance
626list for the base classes and the saved local namespace for the attribute
627dictionary. The class name is bound to this class object in the original local
628namespace.
629
630Class creation can be customized heavily using :ref:`metaclasses <metaclasses>`.
Georg Brandl116aa622007-08-15 14:28:22 +0000631
Georg Brandlf4142722010-10-17 10:38:20 +0000632Classes can also be decorated: just like when decorating functions, ::
Georg Brandl02c30562007-09-07 17:52:53 +0000633
634 @f1(arg)
635 @f2
636 class Foo: pass
637
638is equivalent to ::
639
640 class Foo: pass
641 Foo = f1(arg)(f2(Foo))
642
Georg Brandlf4142722010-10-17 10:38:20 +0000643The evaluation rules for the decorator expressions are the same as for function
644decorators. The result must be a class object, which is then bound to the class
645name.
646
Georg Brandl116aa622007-08-15 14:28:22 +0000647**Programmer's note:** Variables defined in the class definition are class
Georg Brandl65e5f802010-08-02 18:10:13 +0000648attributes; they are shared by instances. Instance attributes can be set in a
649method with ``self.name = value``. Both class and instance attributes are
650accessible through the notation "``self.name``", and an instance attribute hides
651a class attribute with the same name when accessed in this way. Class
652attributes can be used as defaults for instance attributes, but using mutable
653values there can lead to unexpected results. :ref:`Descriptors <descriptors>`
654can be used to create instance variables with different implementation details.
Georg Brandl85eb8c12007-08-31 16:33:38 +0000655
Georg Brandl116aa622007-08-15 14:28:22 +0000656
Georg Brandl02c30562007-09-07 17:52:53 +0000657.. seealso::
658
Ezio Melotti78858332011-03-11 20:50:42 +0200659 :pep:`3115` - Metaclasses in Python 3
Georg Brandl02c30562007-09-07 17:52:53 +0000660 :pep:`3129` - Class Decorators
661
Georg Brandl02c30562007-09-07 17:52:53 +0000662
Georg Brandl116aa622007-08-15 14:28:22 +0000663.. rubric:: Footnotes
664
Ezio Melottifc3db8a2011-06-26 11:25:28 +0300665.. [#] The exception is propagated to the invocation stack unless
666 there is a :keyword:`finally` clause which happens to raise another
667 exception. That new exception causes the old one to be lost.
Georg Brandl116aa622007-08-15 14:28:22 +0000668
Georg Brandlf43713f2009-10-22 16:08:10 +0000669.. [#] Currently, control "flows off the end" except in the case of an exception
670 or the execution of a :keyword:`return`, :keyword:`continue`, or
671 :keyword:`break` statement.
Georg Brandl3dbca812008-07-23 16:10:53 +0000672
673.. [#] A string literal appearing as the first statement in the function body is
674 transformed into the function's ``__doc__`` attribute and therefore the
675 function's :term:`docstring`.
676
677.. [#] A string literal appearing as the first statement in the class body is
678 transformed into the namespace's ``__doc__`` item and therefore the class's
679 :term:`docstring`.