blob: f175677fde2f891726a346b5c6072d2cf5a9ad1c [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
Miss Islington (bot)fdf48b62018-10-28 09:43:32 -070024 single: ; (semicolon)
Georg Brandl116aa622007-08-15 14:28:22 +000025
Raymond Hettingeraa7886d2014-05-26 22:20:37 -070026A compound statement consists of one or more 'clauses.' A clause consists of a
Georg Brandl116aa622007-08-15 14:28:22 +000027header and a 'suite.' The clause headers of a particular compound statement are
28all at the same indentation level. Each clause header begins with a uniquely
29identifying keyword and ends with a colon. A suite is a group of statements
30controlled by a clause. A suite can be one or more semicolon-separated simple
31statements on the same line as the header, following the header's colon, or it
32can be one or more indented statements on subsequent lines. Only the latter
Raymond Hettingeraa7886d2014-05-26 22:20:37 -070033form of a suite can contain nested compound statements; the following is illegal,
Georg Brandl116aa622007-08-15 14:28:22 +000034mostly because it wouldn't be clear to which :keyword:`if` clause a following
Georg Brandl02c30562007-09-07 17:52:53 +000035:keyword:`else` clause would belong::
Georg Brandl116aa622007-08-15 14:28:22 +000036
Georg Brandl6911e3c2007-09-04 07:15:32 +000037 if test1: if test2: print(x)
Georg Brandl116aa622007-08-15 14:28:22 +000038
39Also note that the semicolon binds tighter than the colon in this context, so
Georg Brandl6911e3c2007-09-04 07:15:32 +000040that in the following example, either all or none of the :func:`print` calls are
41executed::
Georg Brandl116aa622007-08-15 14:28:22 +000042
Georg Brandl6911e3c2007-09-04 07:15:32 +000043 if x < y < z: print(x); print(y); print(z)
Georg Brandl116aa622007-08-15 14:28:22 +000044
45Summarizing:
46
47.. productionlist::
48 compound_stmt: `if_stmt`
49 : | `while_stmt`
50 : | `for_stmt`
51 : | `try_stmt`
52 : | `with_stmt`
53 : | `funcdef`
54 : | `classdef`
Yury Selivanovf3e40fa2015-05-21 11:50:30 -040055 : | `async_with_stmt`
56 : | `async_for_stmt`
57 : | `async_funcdef`
Georg Brandl116aa622007-08-15 14:28:22 +000058 suite: `stmt_list` NEWLINE | NEWLINE INDENT `statement`+ DEDENT
59 statement: `stmt_list` NEWLINE | `compound_stmt`
60 stmt_list: `simple_stmt` (";" `simple_stmt`)* [";"]
61
62.. index::
63 single: NEWLINE token
64 single: DEDENT token
65 pair: dangling; else
66
67Note that statements always end in a ``NEWLINE`` possibly followed by a
Georg Brandl02c30562007-09-07 17:52:53 +000068``DEDENT``. Also note that optional continuation clauses always begin with a
Georg Brandl116aa622007-08-15 14:28:22 +000069keyword that cannot start a statement, thus there are no ambiguities (the
70'dangling :keyword:`else`' problem is solved in Python by requiring nested
71:keyword:`if` statements to be indented).
72
73The formatting of the grammar rules in the following sections places each clause
74on a separate line for clarity.
75
76
77.. _if:
Christian Heimes5b5e81c2007-12-31 16:14:33 +000078.. _elif:
79.. _else:
Georg Brandl116aa622007-08-15 14:28:22 +000080
81The :keyword:`if` statement
82===========================
83
Christian Heimesfaf2f632008-01-06 16:59:19 +000084.. index::
85 statement: if
86 keyword: elif
87 keyword: else
Miss Islington (bot)fdf48b62018-10-28 09:43:32 -070088 single: : (colon); compound statement
Georg Brandl116aa622007-08-15 14:28:22 +000089
90The :keyword:`if` statement is used for conditional execution:
91
92.. productionlist::
93 if_stmt: "if" `expression` ":" `suite`
Miss Islington (bot)80c188f2018-07-07 14:09:09 -070094 : ("elif" `expression` ":" `suite`)*
Georg Brandl116aa622007-08-15 14:28:22 +000095 : ["else" ":" `suite`]
96
Georg Brandl116aa622007-08-15 14:28:22 +000097It selects exactly one of the suites by evaluating the expressions one by one
98until one is found to be true (see section :ref:`booleans` for the definition of
99true and false); then that suite is executed (and no other part of the
100:keyword:`if` statement is executed or evaluated). If all expressions are
101false, the suite of the :keyword:`else` clause, if present, is executed.
102
103
104.. _while:
105
106The :keyword:`while` statement
107==============================
108
109.. index::
110 statement: while
Georg Brandl02c30562007-09-07 17:52:53 +0000111 keyword: else
Georg Brandl116aa622007-08-15 14:28:22 +0000112 pair: loop; statement
Christian Heimesfaf2f632008-01-06 16:59:19 +0000113 keyword: else
Miss Islington (bot)fdf48b62018-10-28 09:43:32 -0700114 single: : (colon); compound statement
Georg Brandl116aa622007-08-15 14:28:22 +0000115
116The :keyword:`while` statement is used for repeated execution as long as an
117expression is true:
118
119.. productionlist::
120 while_stmt: "while" `expression` ":" `suite`
121 : ["else" ":" `suite`]
122
Georg Brandl116aa622007-08-15 14:28:22 +0000123This repeatedly tests the expression and, if it is true, executes the first
124suite; if the expression is false (which may be the first time it is tested) the
125suite of the :keyword:`else` clause, if present, is executed and the loop
126terminates.
127
128.. index::
129 statement: break
130 statement: continue
131
132A :keyword:`break` statement executed in the first suite terminates the loop
133without executing the :keyword:`else` clause's suite. A :keyword:`continue`
134statement executed in the first suite skips the rest of the suite and goes back
135to testing the expression.
136
137
138.. _for:
139
140The :keyword:`for` statement
141============================
142
143.. index::
144 statement: for
Georg Brandl02c30562007-09-07 17:52:53 +0000145 keyword: in
146 keyword: else
147 pair: target; list
Georg Brandl116aa622007-08-15 14:28:22 +0000148 pair: loop; statement
Christian Heimesfaf2f632008-01-06 16:59:19 +0000149 keyword: in
150 keyword: else
151 pair: target; list
Georg Brandl02c30562007-09-07 17:52:53 +0000152 object: sequence
Miss Islington (bot)fdf48b62018-10-28 09:43:32 -0700153 single: : (colon); compound statement
Georg Brandl116aa622007-08-15 14:28:22 +0000154
155The :keyword:`for` statement is used to iterate over the elements of a sequence
156(such as a string, tuple or list) or other iterable object:
157
158.. productionlist::
159 for_stmt: "for" `target_list` "in" `expression_list` ":" `suite`
160 : ["else" ":" `suite`]
161
Georg Brandl116aa622007-08-15 14:28:22 +0000162The expression list is evaluated once; it should yield an iterable object. An
163iterator is created for the result of the ``expression_list``. The suite is
Raymond Hettingeraa7886d2014-05-26 22:20:37 -0700164then executed once for each item provided by the iterator, in the order returned
165by the iterator. Each item in turn is assigned to the target list using the
Georg Brandl02c30562007-09-07 17:52:53 +0000166standard rules for assignments (see :ref:`assignment`), and then the suite is
167executed. When the items are exhausted (which is immediately when the sequence
168is empty or an iterator raises a :exc:`StopIteration` exception), the suite in
Georg Brandl116aa622007-08-15 14:28:22 +0000169the :keyword:`else` clause, if present, is executed, and the loop terminates.
170
171.. index::
172 statement: break
173 statement: continue
174
175A :keyword:`break` statement executed in the first suite terminates the loop
176without executing the :keyword:`else` clause's suite. A :keyword:`continue`
177statement executed in the first suite skips the rest of the suite and continues
Raymond Hettingeraa7886d2014-05-26 22:20:37 -0700178with the next item, or with the :keyword:`else` clause if there is no next
Georg Brandl116aa622007-08-15 14:28:22 +0000179item.
180
Raymond Hettingeraa7886d2014-05-26 22:20:37 -0700181The for-loop makes assignments to the variables(s) in the target list.
182This overwrites all previous assignments to those variables including
183those made in the suite of the for-loop::
184
185 for i in range(10):
186 print(i)
187 i = 5 # this will not affect the for-loop
Zachary Ware2f78b842014-06-03 09:32:40 -0500188 # because i will be overwritten with the next
Raymond Hettingeraa7886d2014-05-26 22:20:37 -0700189 # index in the range
190
Georg Brandl116aa622007-08-15 14:28:22 +0000191
192.. index::
193 builtin: range
Georg Brandl116aa622007-08-15 14:28:22 +0000194
Georg Brandl02c30562007-09-07 17:52:53 +0000195Names in the target list are not deleted when the loop is finished, but if the
Raymond Hettingeraa7886d2014-05-26 22:20:37 -0700196sequence is empty, they will not have been assigned to at all by the loop. Hint:
Georg Brandl02c30562007-09-07 17:52:53 +0000197the built-in function :func:`range` returns an iterator of integers suitable to
Benjamin Peterson3db5e7b2009-06-03 03:13:30 +0000198emulate the effect of Pascal's ``for i := a to b do``; e.g., ``list(range(3))``
Georg Brandl02c30562007-09-07 17:52:53 +0000199returns the list ``[0, 1, 2]``.
Georg Brandl116aa622007-08-15 14:28:22 +0000200
Georg Brandle720c0a2009-04-27 16:20:50 +0000201.. note::
Georg Brandl116aa622007-08-15 14:28:22 +0000202
203 .. index::
204 single: loop; over mutable sequence
205 single: mutable sequence; loop over
206
207 There is a subtlety when the sequence is being modified by the loop (this can
Miss Islington (bot)399b47f2018-07-30 12:30:31 -0700208 only occur for mutable sequences, e.g. lists). An internal counter is used
Georg Brandl02c30562007-09-07 17:52:53 +0000209 to keep track of which item is used next, and this is incremented on each
Georg Brandl116aa622007-08-15 14:28:22 +0000210 iteration. When this counter has reached the length of the sequence the loop
211 terminates. This means that if the suite deletes the current (or a previous)
Georg Brandl02c30562007-09-07 17:52:53 +0000212 item from the sequence, the next item will be skipped (since it gets the
213 index of the current item which has already been treated). Likewise, if the
214 suite inserts an item in the sequence before the current item, the current
215 item will be treated again the next time through the loop. This can lead to
216 nasty bugs that can be avoided by making a temporary copy using a slice of
217 the whole sequence, e.g., ::
Georg Brandl116aa622007-08-15 14:28:22 +0000218
Georg Brandl02c30562007-09-07 17:52:53 +0000219 for x in a[:]:
220 if x < 0: a.remove(x)
Georg Brandl116aa622007-08-15 14:28:22 +0000221
222
223.. _try:
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000224.. _except:
225.. _finally:
Georg Brandl116aa622007-08-15 14:28:22 +0000226
227The :keyword:`try` statement
228============================
229
Christian Heimesfaf2f632008-01-06 16:59:19 +0000230.. index::
231 statement: try
232 keyword: except
233 keyword: finally
Serhiy Storchaka9a75b842018-10-26 11:18:42 +0300234 keyword: else
235 keyword: as
Miss Islington (bot)fdf48b62018-10-28 09:43:32 -0700236 single: : (colon); compound statement
Georg Brandl116aa622007-08-15 14:28:22 +0000237
238The :keyword:`try` statement specifies exception handlers and/or cleanup code
239for a group of statements:
240
241.. productionlist::
Miss Islington (bot)80c188f2018-07-07 14:09:09 -0700242 try_stmt: `try1_stmt` | `try2_stmt`
Georg Brandl116aa622007-08-15 14:28:22 +0000243 try1_stmt: "try" ":" `suite`
Terry Jan Reedy65e3ecb2014-08-23 19:29:47 -0400244 : ("except" [`expression` ["as" `identifier`]] ":" `suite`)+
Georg Brandl116aa622007-08-15 14:28:22 +0000245 : ["else" ":" `suite`]
246 : ["finally" ":" `suite`]
247 try2_stmt: "try" ":" `suite`
248 : "finally" ":" `suite`
249
Christian Heimesfaf2f632008-01-06 16:59:19 +0000250
251The :keyword:`except` clause(s) specify one or more exception handlers. When no
Georg Brandl116aa622007-08-15 14:28:22 +0000252exception occurs in the :keyword:`try` clause, no exception handler is executed.
253When an exception occurs in the :keyword:`try` suite, a search for an exception
254handler is started. This search inspects the except clauses in turn until one
255is found that matches the exception. An expression-less except clause, if
256present, must be last; it matches any exception. For an except clause with an
257expression, that expression is evaluated, and the clause matches the exception
258if the resulting object is "compatible" with the exception. An object is
259compatible with an exception if it is the class or a base class of the exception
260object or a tuple containing an item compatible with the exception.
261
262If no except clause matches the exception, the search for an exception handler
263continues in the surrounding code and on the invocation stack. [#]_
264
265If the evaluation of an expression in the header of an except clause raises an
266exception, the original search for a handler is canceled and a search starts for
267the new exception in the surrounding code and on the call stack (it is treated
268as if the entire :keyword:`try` statement raised the exception).
269
Serhiy Storchaka9a75b842018-10-26 11:18:42 +0300270.. index:: single: as; except clause
271
Georg Brandl116aa622007-08-15 14:28:22 +0000272When a matching except clause is found, the exception is assigned to the target
Georg Brandl02c30562007-09-07 17:52:53 +0000273specified after the :keyword:`as` keyword in that except clause, if present, and
274the except clause's suite is executed. All except clauses must have an
275executable block. When the end of this block is reached, execution continues
276normally after the entire try statement. (This means that if two nested
277handlers exist for the same exception, and the exception occurs in the try
278clause of the inner handler, the outer handler will not handle the exception.)
279
280When an exception has been assigned using ``as target``, it is cleared at the
281end of the except clause. This is as if ::
282
283 except E as N:
284 foo
285
286was translated to ::
287
288 except E as N:
289 try:
290 foo
291 finally:
Georg Brandl02c30562007-09-07 17:52:53 +0000292 del N
293
Benjamin Petersonfb288da2010-06-29 01:27:35 +0000294This means the exception must be assigned to a different name to be able to
295refer to it after the except clause. Exceptions are cleared because with the
296traceback attached to them, they form a reference cycle with the stack frame,
297keeping all locals in that frame alive until the next garbage collection occurs.
Georg Brandl116aa622007-08-15 14:28:22 +0000298
299.. index::
300 module: sys
301 object: traceback
302
303Before an except clause's suite is executed, details about the exception are
Raymond Hettingeraa7886d2014-05-26 22:20:37 -0700304stored in the :mod:`sys` module and can be accessed via :func:`sys.exc_info`.
Georg Brandlb30f3302011-01-06 09:23:56 +0000305:func:`sys.exc_info` returns a 3-tuple consisting of the exception class, the
306exception instance and a traceback object (see section :ref:`types`) identifying
307the point in the program where the exception occurred. :func:`sys.exc_info`
308values are restored to their previous values (before the call) when returning
309from a function that handled an exception.
Georg Brandl116aa622007-08-15 14:28:22 +0000310
311.. index::
312 keyword: else
313 statement: return
314 statement: break
315 statement: continue
316
317The optional :keyword:`else` clause is executed if and when control flows off
318the end of the :keyword:`try` clause. [#]_ Exceptions in the :keyword:`else`
319clause are not handled by the preceding :keyword:`except` clauses.
320
321.. index:: keyword: finally
322
323If :keyword:`finally` is present, it specifies a 'cleanup' handler. The
324:keyword:`try` clause is executed, including any :keyword:`except` and
325:keyword:`else` clauses. If an exception occurs in any of the clauses and is
326not handled, the exception is temporarily saved. The :keyword:`finally` clause
Mark Dickinson05ee5812012-09-24 20:16:38 +0100327is executed. If there is a saved exception it is re-raised at the end of the
328:keyword:`finally` clause. If the :keyword:`finally` clause raises another
329exception, the saved exception is set as the context of the new exception.
330If the :keyword:`finally` clause executes a :keyword:`return` or :keyword:`break`
331statement, the saved exception is discarded::
Andrew Svetlovf158d862012-08-14 15:38:15 +0300332
Zachary Ware9fafc9f2014-05-06 09:18:17 -0500333 >>> def f():
334 ... try:
335 ... 1/0
336 ... finally:
337 ... return 42
338 ...
339 >>> f()
340 42
Andrew Svetlovf158d862012-08-14 15:38:15 +0300341
342The exception information is not available to the program during execution of
343the :keyword:`finally` clause.
Georg Brandl116aa622007-08-15 14:28:22 +0000344
345.. index::
346 statement: return
347 statement: break
348 statement: continue
349
350When a :keyword:`return`, :keyword:`break` or :keyword:`continue` statement is
351executed in the :keyword:`try` suite of a :keyword:`try`...\ :keyword:`finally`
352statement, the :keyword:`finally` clause is also executed 'on the way out.' A
353:keyword:`continue` statement is illegal in the :keyword:`finally` clause. (The
354reason is a problem with the current implementation --- this restriction may be
355lifted in the future).
356
Zachary Ware8edd5322014-05-06 09:07:13 -0500357The return value of a function is determined by the last :keyword:`return`
358statement executed. Since the :keyword:`finally` clause always executes, a
359:keyword:`return` statement executed in the :keyword:`finally` clause will
360always be the last one executed::
361
362 >>> def foo():
363 ... try:
364 ... return 'try'
365 ... finally:
366 ... return 'finally'
367 ...
368 >>> foo()
369 'finally'
370
Georg Brandl116aa622007-08-15 14:28:22 +0000371Additional information on exceptions can be found in section :ref:`exceptions`,
372and information on using the :keyword:`raise` statement to generate exceptions
373may be found in section :ref:`raise`.
374
375
376.. _with:
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000377.. _as:
Georg Brandl116aa622007-08-15 14:28:22 +0000378
379The :keyword:`with` statement
380=============================
381
Terry Jan Reedy7c895ed2014-04-29 00:58:56 -0400382.. index::
Serhiy Storchaka9a75b842018-10-26 11:18:42 +0300383 statement: with
384 keyword: as
385 single: as; with statement
Miss Islington (bot)fdf48b62018-10-28 09:43:32 -0700386 single: , (comma); with statement
387 single: : (colon); compound statement
Georg Brandl116aa622007-08-15 14:28:22 +0000388
Georg Brandl116aa622007-08-15 14:28:22 +0000389The :keyword:`with` statement is used to wrap the execution of a block with
Georg Brandl02c30562007-09-07 17:52:53 +0000390methods defined by a context manager (see section :ref:`context-managers`).
391This allows common :keyword:`try`...\ :keyword:`except`...\ :keyword:`finally`
392usage patterns to be encapsulated for convenient reuse.
Georg Brandl116aa622007-08-15 14:28:22 +0000393
394.. productionlist::
Miss Islington (bot)80c188f2018-07-07 14:09:09 -0700395 with_stmt: "with" `with_item` ("," `with_item`)* ":" `suite`
Georg Brandl0c315622009-05-25 21:10:36 +0000396 with_item: `expression` ["as" `target`]
Georg Brandl116aa622007-08-15 14:28:22 +0000397
Georg Brandl0c315622009-05-25 21:10:36 +0000398The execution of the :keyword:`with` statement with one "item" proceeds as follows:
Georg Brandl116aa622007-08-15 14:28:22 +0000399
Georg Brandl3387f482010-09-03 22:40:02 +0000400#. The context expression (the expression given in the :token:`with_item`) is
401 evaluated to obtain a context manager.
Georg Brandl116aa622007-08-15 14:28:22 +0000402
Benjamin Peterson876b2f22009-06-28 03:18:59 +0000403#. The context manager's :meth:`__exit__` is loaded for later use.
404
Georg Brandl116aa622007-08-15 14:28:22 +0000405#. The context manager's :meth:`__enter__` method is invoked.
406
407#. If a target was included in the :keyword:`with` statement, the return value
408 from :meth:`__enter__` is assigned to it.
409
410 .. note::
411
Georg Brandl02c30562007-09-07 17:52:53 +0000412 The :keyword:`with` statement guarantees that if the :meth:`__enter__`
413 method returns without an error, then :meth:`__exit__` will always be
Benjamin Peterson876b2f22009-06-28 03:18:59 +0000414 called. Thus, if an error occurs during the assignment to the target list,
415 it will be treated the same as an error occurring within the suite would
416 be. See step 6 below.
Georg Brandl116aa622007-08-15 14:28:22 +0000417
418#. The suite is executed.
419
Georg Brandl02c30562007-09-07 17:52:53 +0000420#. The context manager's :meth:`__exit__` method is invoked. If an exception
Georg Brandl116aa622007-08-15 14:28:22 +0000421 caused the suite to be exited, its type, value, and traceback are passed as
422 arguments to :meth:`__exit__`. Otherwise, three :const:`None` arguments are
423 supplied.
424
425 If the suite was exited due to an exception, and the return value from the
Georg Brandl02c30562007-09-07 17:52:53 +0000426 :meth:`__exit__` method was false, the exception is reraised. If the return
Georg Brandl116aa622007-08-15 14:28:22 +0000427 value was true, the exception is suppressed, and execution continues with the
428 statement following the :keyword:`with` statement.
429
Georg Brandl02c30562007-09-07 17:52:53 +0000430 If the suite was exited for any reason other than an exception, the return
431 value from :meth:`__exit__` is ignored, and execution proceeds at the normal
432 location for the kind of exit that was taken.
Georg Brandl116aa622007-08-15 14:28:22 +0000433
Georg Brandl0c315622009-05-25 21:10:36 +0000434With more than one item, the context managers are processed as if multiple
435:keyword:`with` statements were nested::
436
437 with A() as a, B() as b:
438 suite
439
440is equivalent to ::
441
442 with A() as a:
443 with B() as b:
444 suite
445
446.. versionchanged:: 3.1
447 Support for multiple context expressions.
448
Georg Brandl116aa622007-08-15 14:28:22 +0000449.. seealso::
450
Serhiy Storchakae4ba8722016-03-31 15:30:54 +0300451 :pep:`343` - The "with" statement
Georg Brandl116aa622007-08-15 14:28:22 +0000452 The specification, background, and examples for the Python :keyword:`with`
453 statement.
454
455
Chris Jerdonekb4309942012-12-25 14:54:44 -0800456.. index::
457 single: parameter; function definition
458
Georg Brandl116aa622007-08-15 14:28:22 +0000459.. _function:
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000460.. _def:
Georg Brandl116aa622007-08-15 14:28:22 +0000461
462Function definitions
463====================
464
465.. index::
Georg Brandl116aa622007-08-15 14:28:22 +0000466 statement: def
Christian Heimesfaf2f632008-01-06 16:59:19 +0000467 pair: function; definition
468 pair: function; name
469 pair: name; binding
Georg Brandl116aa622007-08-15 14:28:22 +0000470 object: user-defined function
471 object: function
Georg Brandl02c30562007-09-07 17:52:53 +0000472 pair: function; name
473 pair: name; binding
Miss Islington (bot)fdf48b62018-10-28 09:43:32 -0700474 single: () (parentheses); function definition
475 single: , (comma); parameter list
476 single: : (colon); compound statement
Georg Brandl116aa622007-08-15 14:28:22 +0000477
478A function definition defines a user-defined function object (see section
479:ref:`types`):
480
481.. productionlist::
Miss Islington (bot)80c188f2018-07-07 14:09:09 -0700482 funcdef: [`decorators`] "def" `funcname` "(" [`parameter_list`] ")"
483 : ["->" `expression`] ":" `suite`
Georg Brandl116aa622007-08-15 14:28:22 +0000484 decorators: `decorator`+
Benjamin Petersonbc7ee432016-05-16 23:18:33 -0700485 decorator: "@" `dotted_name` ["(" [`argument_list` [","]] ")"] NEWLINE
Georg Brandl116aa622007-08-15 14:28:22 +0000486 dotted_name: `identifier` ("." `identifier`)*
Robert Collinsdf395992015-08-12 08:00:06 +1200487 parameter_list: `defparameter` ("," `defparameter`)* ["," [`parameter_list_starargs`]]
488 : | `parameter_list_starargs`
489 parameter_list_starargs: "*" [`parameter`] ("," `defparameter`)* ["," ["**" `parameter` [","]]]
Miss Islington (bot)80c188f2018-07-07 14:09:09 -0700490 : | "**" `parameter` [","]
Georg Brandl116aa622007-08-15 14:28:22 +0000491 parameter: `identifier` [":" `expression`]
492 defparameter: `parameter` ["=" `expression`]
493 funcname: `identifier`
494
Georg Brandl116aa622007-08-15 14:28:22 +0000495
496A function definition is an executable statement. Its execution binds the
497function name in the current local namespace to a function object (a wrapper
498around the executable code for the function). This function object contains a
499reference to the current global namespace as the global namespace to be used
500when the function is called.
501
502The function definition does not execute the function body; this gets executed
Georg Brandl3dbca812008-07-23 16:10:53 +0000503only when the function is called. [#]_
Georg Brandl116aa622007-08-15 14:28:22 +0000504
Christian Heimesdae2a892008-04-19 00:55:37 +0000505.. index::
Miss Islington (bot)fdf48b62018-10-28 09:43:32 -0700506 single: @ (at); function definition
Christian Heimesdae2a892008-04-19 00:55:37 +0000507
Christian Heimesd8654cf2007-12-02 15:22:16 +0000508A function definition may be wrapped by one or more :term:`decorator` expressions.
Georg Brandl116aa622007-08-15 14:28:22 +0000509Decorator expressions are evaluated when the function is defined, in the scope
510that contains the function definition. The result must be a callable, which is
511invoked with the function object as the only argument. The returned value is
512bound to the function name instead of the function object. Multiple decorators
Georg Brandl02c30562007-09-07 17:52:53 +0000513are applied in nested fashion. For example, the following code ::
Georg Brandl116aa622007-08-15 14:28:22 +0000514
515 @f1(arg)
516 @f2
517 def func(): pass
518
Berker Peksag6cafece2016-08-03 10:17:21 +0300519is roughly equivalent to ::
Georg Brandl116aa622007-08-15 14:28:22 +0000520
521 def func(): pass
522 func = f1(arg)(f2(func))
523
Berker Peksag6cafece2016-08-03 10:17:21 +0300524except that the original function is not temporarily bound to the name ``func``.
525
Chris Jerdonekb4309942012-12-25 14:54:44 -0800526.. index::
527 triple: default; parameter; value
528 single: argument; function definition
Miss Islington (bot)fdf48b62018-10-28 09:43:32 -0700529 single: = (equals); function definition
Georg Brandl116aa622007-08-15 14:28:22 +0000530
Chris Jerdonekb4309942012-12-25 14:54:44 -0800531When one or more :term:`parameters <parameter>` have the form *parameter* ``=``
532*expression*, the function is said to have "default parameter values." For a
533parameter with a default value, the corresponding :term:`argument` may be
534omitted from a call, in which
Georg Brandl116aa622007-08-15 14:28:22 +0000535case the parameter's default value is substituted. If a parameter has a default
Georg Brandl02c30562007-09-07 17:52:53 +0000536value, all following parameters up until the "``*``" must also have a default
537value --- this is a syntactic restriction that is not expressed by the grammar.
Georg Brandl116aa622007-08-15 14:28:22 +0000538
Benjamin Peterson1ef876c2013-02-10 09:29:59 -0500539**Default parameter values are evaluated from left to right when the function
540definition is executed.** This means that the expression is evaluated once, when
541the function is defined, and that the same "pre-computed" value is used for each
542call. This is especially important to understand when a default parameter is a
543mutable object, such as a list or a dictionary: if the function modifies the
544object (e.g. by appending an item to a list), the default value is in effect
545modified. This is generally not what was intended. A way around this is to use
546``None`` as the default, and explicitly test for it in the body of the function,
547e.g.::
Georg Brandl116aa622007-08-15 14:28:22 +0000548
549 def whats_on_the_telly(penguin=None):
550 if penguin is None:
551 penguin = []
552 penguin.append("property of the zoo")
553 return penguin
554
Christian Heimesdae2a892008-04-19 00:55:37 +0000555.. index::
Miss Islington (bot)fdf48b62018-10-28 09:43:32 -0700556 single: * (asterisk); function definition
Serhiy Storchaka9a75b842018-10-26 11:18:42 +0300557 single: **; function definition
Christian Heimesdae2a892008-04-19 00:55:37 +0000558
559Function call semantics are described in more detail in section :ref:`calls`. A
Georg Brandl116aa622007-08-15 14:28:22 +0000560function call always assigns values to all parameters mentioned in the parameter
561list, either from position arguments, from keyword arguments, or from default
562values. If the form "``*identifier``" is present, it is initialized to a tuple
Eric Snowb957b0c2016-09-08 13:59:58 -0700563receiving any excess positional parameters, defaulting to the empty tuple.
564If the form "``**identifier``" is present, it is initialized to a new
565ordered mapping receiving any excess keyword arguments, defaulting to a
566new empty mapping of the same type. Parameters after "``*``" or
567"``*identifier``" are keyword-only parameters and may only be passed
568used keyword arguments.
Georg Brandl116aa622007-08-15 14:28:22 +0000569
Serhiy Storchaka9a75b842018-10-26 11:18:42 +0300570.. index::
571 pair: function; annotations
572 single: ->; function annotations
Miss Islington (bot)fdf48b62018-10-28 09:43:32 -0700573 single: : (colon); function annotations
Georg Brandl116aa622007-08-15 14:28:22 +0000574
575Parameters may have annotations of the form "``: expression``" following the
Georg Brandl02c30562007-09-07 17:52:53 +0000576parameter name. Any parameter may have an annotation even those of the form
577``*identifier`` or ``**identifier``. Functions may have "return" annotation of
578the form "``-> expression``" after the parameter list. These annotations can be
Guido van Rossum95e4d582018-01-26 08:20:18 -0800579any valid Python expression. The presence of annotations does not change the
580semantics of a function. The annotation values are available as values of
581a dictionary keyed by the parameters' names in the :attr:`__annotations__`
582attribute of the function object. If the ``annotations`` import from
583:mod:`__future__` is used, annotations are preserved as strings at runtime which
584enables postponed evaluation. Otherwise, they are evaluated when the function
585definition is executed. In this case annotations may be evaluated in
586a different order than they appear in the source code.
Georg Brandl116aa622007-08-15 14:28:22 +0000587
Georg Brandl242e6a02013-10-06 10:28:39 +0200588.. index:: pair: lambda; expression
Georg Brandl116aa622007-08-15 14:28:22 +0000589
590It is also possible to create anonymous functions (functions not bound to a
Georg Brandl242e6a02013-10-06 10:28:39 +0200591name), for immediate use in expressions. This uses lambda expressions, described in
592section :ref:`lambda`. Note that the lambda expression is merely a shorthand for a
Georg Brandl116aa622007-08-15 14:28:22 +0000593simplified function definition; a function defined in a ":keyword:`def`"
594statement can be passed around or assigned to another name just like a function
Georg Brandl242e6a02013-10-06 10:28:39 +0200595defined by a lambda expression. The ":keyword:`def`" form is actually more powerful
Georg Brandl116aa622007-08-15 14:28:22 +0000596since it allows the execution of multiple statements and annotations.
597
Georg Brandl242e6a02013-10-06 10:28:39 +0200598**Programmer's note:** Functions are first-class objects. A "``def``" statement
Georg Brandl116aa622007-08-15 14:28:22 +0000599executed inside a function definition defines a local function that can be
600returned or passed around. Free variables used in the nested function can
601access the local variables of the function containing the def. See section
602:ref:`naming` for details.
603
Georg Brandl64a40942012-03-10 09:22:47 +0100604.. seealso::
605
606 :pep:`3107` - Function Annotations
607 The original specification for function annotations.
608
Guido van Rossum95e4d582018-01-26 08:20:18 -0800609 :pep:`484` - Type Hints
610 Definition of a standard meaning for annotations: type hints.
611
612 :pep:`526` - Syntax for Variable Annotations
613 Ability to type hint variable declarations, including class
614 variables and instance variables
615
616 :pep:`563` - Postponed Evaluation of Annotations
617 Support for forward references within annotations by preserving
618 annotations in a string form at runtime instead of eager evaluation.
619
Georg Brandl116aa622007-08-15 14:28:22 +0000620
621.. _class:
622
623Class definitions
624=================
625
626.. index::
Georg Brandl02c30562007-09-07 17:52:53 +0000627 object: class
Christian Heimesfaf2f632008-01-06 16:59:19 +0000628 statement: class
629 pair: class; definition
Georg Brandl116aa622007-08-15 14:28:22 +0000630 pair: class; name
631 pair: name; binding
632 pair: execution; frame
Christian Heimesfaf2f632008-01-06 16:59:19 +0000633 single: inheritance
Georg Brandl3dbca812008-07-23 16:10:53 +0000634 single: docstring
Miss Islington (bot)fdf48b62018-10-28 09:43:32 -0700635 single: () (parentheses); class definition
636 single: , (comma); expression list
637 single: : (colon); compound statement
Georg Brandl116aa622007-08-15 14:28:22 +0000638
Georg Brandl02c30562007-09-07 17:52:53 +0000639A class definition defines a class object (see section :ref:`types`):
640
Georg Brandl02c30562007-09-07 17:52:53 +0000641.. productionlist::
642 classdef: [`decorators`] "class" `classname` [`inheritance`] ":" `suite`
Benjamin Peterson54044d62016-05-16 23:20:22 -0700643 inheritance: "(" [`argument_list`] ")"
Georg Brandl02c30562007-09-07 17:52:53 +0000644 classname: `identifier`
645
Georg Brandl65e5f802010-08-02 18:10:13 +0000646A class definition is an executable statement. The inheritance list usually
647gives a list of base classes (see :ref:`metaclasses` for more advanced uses), so
648each item in the list should evaluate to a class object which allows
Éric Araujo28053fb2010-11-22 03:09:19 +0000649subclassing. Classes without an inheritance list inherit, by default, from the
650base class :class:`object`; hence, ::
651
652 class Foo:
653 pass
654
655is equivalent to ::
656
657 class Foo(object):
658 pass
Georg Brandl65e5f802010-08-02 18:10:13 +0000659
660The class's suite is then executed in a new execution frame (see :ref:`naming`),
661using a newly created local namespace and the original global namespace.
662(Usually, the suite contains mostly function definitions.) When the class's
663suite finishes execution, its execution frame is discarded but its local
664namespace is saved. [#]_ A class object is then created using the inheritance
665list for the base classes and the saved local namespace for the attribute
666dictionary. The class name is bound to this class object in the original local
667namespace.
668
Eric Snow92a6c172016-09-05 14:50:11 -0700669The order in which attributes are defined in the class body is preserved
Eric Snow4f29e752016-09-08 15:11:11 -0700670in the new class's ``__dict__``. Note that this is reliable only right
671after the class is created and only for classes that were defined using
672the definition syntax.
Eric Snow92a6c172016-09-05 14:50:11 -0700673
Georg Brandl65e5f802010-08-02 18:10:13 +0000674Class creation can be customized heavily using :ref:`metaclasses <metaclasses>`.
Georg Brandl116aa622007-08-15 14:28:22 +0000675
Serhiy Storchaka9a75b842018-10-26 11:18:42 +0300676.. index::
Miss Islington (bot)fdf48b62018-10-28 09:43:32 -0700677 single: @ (at); class definition
Serhiy Storchaka9a75b842018-10-26 11:18:42 +0300678
Georg Brandlf4142722010-10-17 10:38:20 +0000679Classes can also be decorated: just like when decorating functions, ::
Georg Brandl02c30562007-09-07 17:52:53 +0000680
681 @f1(arg)
682 @f2
683 class Foo: pass
684
Berker Peksag6cafece2016-08-03 10:17:21 +0300685is roughly equivalent to ::
Georg Brandl02c30562007-09-07 17:52:53 +0000686
687 class Foo: pass
688 Foo = f1(arg)(f2(Foo))
689
Georg Brandlf4142722010-10-17 10:38:20 +0000690The evaluation rules for the decorator expressions are the same as for function
Berker Peksag6cafece2016-08-03 10:17:21 +0300691decorators. The result is then bound to the class name.
Georg Brandlf4142722010-10-17 10:38:20 +0000692
Georg Brandl116aa622007-08-15 14:28:22 +0000693**Programmer's note:** Variables defined in the class definition are class
Georg Brandl65e5f802010-08-02 18:10:13 +0000694attributes; they are shared by instances. Instance attributes can be set in a
695method with ``self.name = value``. Both class and instance attributes are
696accessible through the notation "``self.name``", and an instance attribute hides
697a class attribute with the same name when accessed in this way. Class
698attributes can be used as defaults for instance attributes, but using mutable
699values there can lead to unexpected results. :ref:`Descriptors <descriptors>`
700can be used to create instance variables with different implementation details.
Georg Brandl85eb8c12007-08-31 16:33:38 +0000701
Georg Brandl116aa622007-08-15 14:28:22 +0000702
Georg Brandl02c30562007-09-07 17:52:53 +0000703.. seealso::
704
Miss Islington (bot)2a6cf442018-10-19 16:43:55 -0700705 :pep:`3115` - Metaclasses in Python 3000
706 The proposal that changed the declaration of metaclasses to the current
707 syntax, and the semantics for how classes with metaclasses are
708 constructed.
709
Georg Brandl02c30562007-09-07 17:52:53 +0000710 :pep:`3129` - Class Decorators
Miss Islington (bot)2a6cf442018-10-19 16:43:55 -0700711 The proposal that added class decorators. Function and method decorators
712 were introduced in :pep:`318`.
Georg Brandl02c30562007-09-07 17:52:53 +0000713
Georg Brandl02c30562007-09-07 17:52:53 +0000714
Elvis Pranskevichus15f3d0c2018-05-19 23:39:45 -0400715.. _async:
716
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400717Coroutines
718==========
719
Yury Selivanov5376ba92015-06-22 12:19:30 -0400720.. versionadded:: 3.5
721
Yury Selivanov66f88282015-06-24 11:04:15 -0400722.. index:: statement: async def
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400723.. _`async def`:
724
725Coroutine function definition
726-----------------------------
727
728.. productionlist::
Miss Islington (bot)80c188f2018-07-07 14:09:09 -0700729 async_funcdef: [`decorators`] "async" "def" `funcname` "(" [`parameter_list`] ")"
730 : ["->" `expression`] ":" `suite`
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400731
Yury Selivanov66f88282015-06-24 11:04:15 -0400732.. index::
733 keyword: async
734 keyword: await
735
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400736Execution of Python coroutines can be suspended and resumed at many points
Miss Islington (bot)50e04cc2018-10-28 06:52:27 -0700737(see :term:`coroutine`). Inside the body of a coroutine function, ``await`` and
Yury Selivanov66f88282015-06-24 11:04:15 -0400738``async`` identifiers become reserved keywords; :keyword:`await` expressions,
739:keyword:`async for` and :keyword:`async with` can only be used in
Miss Islington (bot)50e04cc2018-10-28 06:52:27 -0700740coroutine function bodies.
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400741
742Functions defined with ``async def`` syntax are always coroutine functions,
743even if they do not contain ``await`` or ``async`` keywords.
744
Miss Islington (bot)50e04cc2018-10-28 06:52:27 -0700745It is a :exc:`SyntaxError` to use a ``yield from`` expression inside the body
746of a coroutine function.
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400747
Yury Selivanov5376ba92015-06-22 12:19:30 -0400748An example of a coroutine function::
749
750 async def func(param1, param2):
751 do_stuff()
752 await some_coroutine()
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400753
754
Yury Selivanov66f88282015-06-24 11:04:15 -0400755.. index:: statement: async for
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400756.. _`async for`:
757
758The :keyword:`async for` statement
759----------------------------------
760
761.. productionlist::
762 async_for_stmt: "async" `for_stmt`
763
764An :term:`asynchronous iterable` is able to call asynchronous code in its
765*iter* implementation, and :term:`asynchronous iterator` can call asynchronous
766code in its *next* method.
767
768The ``async for`` statement allows convenient iteration over asynchronous
769iterators.
770
771The following code::
772
773 async for TARGET in ITER:
774 BLOCK
775 else:
776 BLOCK2
777
778Is semantically equivalent to::
779
780 iter = (ITER)
Yury Selivanova6f6edb2016-06-09 15:08:31 -0400781 iter = type(iter).__aiter__(iter)
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400782 running = True
783 while running:
784 try:
785 TARGET = await type(iter).__anext__(iter)
786 except StopAsyncIteration:
787 running = False
788 else:
789 BLOCK
790 else:
791 BLOCK2
792
793See also :meth:`__aiter__` and :meth:`__anext__` for details.
794
Miss Islington (bot)50e04cc2018-10-28 06:52:27 -0700795It is a :exc:`SyntaxError` to use an ``async for`` statement outside the
796body of a coroutine function.
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400797
798
Yury Selivanov66f88282015-06-24 11:04:15 -0400799.. index:: statement: async with
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400800.. _`async with`:
801
802The :keyword:`async with` statement
803-----------------------------------
804
805.. productionlist::
806 async_with_stmt: "async" `with_stmt`
807
808An :term:`asynchronous context manager` is a :term:`context manager` that is
809able to suspend execution in its *enter* and *exit* methods.
810
811The following code::
812
813 async with EXPR as VAR:
814 BLOCK
815
816Is semantically equivalent to::
817
818 mgr = (EXPR)
819 aexit = type(mgr).__aexit__
820 aenter = type(mgr).__aenter__(mgr)
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400821
822 VAR = await aenter
823 try:
824 BLOCK
825 except:
826 if not await aexit(mgr, *sys.exc_info()):
827 raise
828 else:
829 await aexit(mgr, None, None, None)
830
831See also :meth:`__aenter__` and :meth:`__aexit__` for details.
832
Miss Islington (bot)50e04cc2018-10-28 06:52:27 -0700833It is a :exc:`SyntaxError` to use an ``async with`` statement outside the
834body of a coroutine function.
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400835
836.. seealso::
837
838 :pep:`492` - Coroutines with async and await syntax
Miss Islington (bot)2a6cf442018-10-19 16:43:55 -0700839 The proposal that made coroutines a proper standalone concept in Python,
840 and added supporting syntax.
Yury Selivanovf3e40fa2015-05-21 11:50:30 -0400841
842
Georg Brandl116aa622007-08-15 14:28:22 +0000843.. rubric:: Footnotes
844
Ezio Melottifc3db8a2011-06-26 11:25:28 +0300845.. [#] The exception is propagated to the invocation stack unless
846 there is a :keyword:`finally` clause which happens to raise another
847 exception. That new exception causes the old one to be lost.
Georg Brandl116aa622007-08-15 14:28:22 +0000848
Georg Brandlf43713f2009-10-22 16:08:10 +0000849.. [#] Currently, control "flows off the end" except in the case of an exception
850 or the execution of a :keyword:`return`, :keyword:`continue`, or
851 :keyword:`break` statement.
Georg Brandl3dbca812008-07-23 16:10:53 +0000852
853.. [#] A string literal appearing as the first statement in the function body is
854 transformed into the function's ``__doc__`` attribute and therefore the
855 function's :term:`docstring`.
856
857.. [#] A string literal appearing as the first statement in the class body is
858 transformed into the namespace's ``__doc__`` item and therefore the class's
859 :term:`docstring`.