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