blob: d9d11b55dbb8b56f6e99810aa27a7eadc157ccd4 [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
Georg Brandl02c30562007-09-07 17:52:53 +000017handlers and/or cleanup code for a group of statements, while the
18:keyword:`with` statement allows the execution of initialization and
19finalization code around a block of code. Function and class definitions are
20also syntactically compound statements.
Georg Brandl116aa622007-08-15 14:28:22 +000021
22.. index::
23 single: clause
24 single: suite
25
26Compound statements consist of one or more 'clauses.' A clause consists of a
27header 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
33form of suite can contain nested compound statements; the following is illegal,
34mostly 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`
55 suite: `stmt_list` NEWLINE | NEWLINE INDENT `statement`+ DEDENT
56 statement: `stmt_list` NEWLINE | `compound_stmt`
57 stmt_list: `simple_stmt` (";" `simple_stmt`)* [";"]
58
59.. index::
60 single: NEWLINE token
61 single: DEDENT token
62 pair: dangling; else
63
64Note that statements always end in a ``NEWLINE`` possibly followed by a
Georg Brandl02c30562007-09-07 17:52:53 +000065``DEDENT``. Also note that optional continuation clauses always begin with a
Georg Brandl116aa622007-08-15 14:28:22 +000066keyword that cannot start a statement, thus there are no ambiguities (the
67'dangling :keyword:`else`' problem is solved in Python by requiring nested
68:keyword:`if` statements to be indented).
69
70The formatting of the grammar rules in the following sections places each clause
71on a separate line for clarity.
72
73
74.. _if:
Christian Heimes5b5e81c2007-12-31 16:14:33 +000075.. _elif:
76.. _else:
Georg Brandl116aa622007-08-15 14:28:22 +000077
78The :keyword:`if` statement
79===========================
80
Christian Heimesfaf2f632008-01-06 16:59:19 +000081.. index::
82 statement: if
83 keyword: elif
84 keyword: else
Georg Brandl02c30562007-09-07 17:52:53 +000085 keyword: elif
86 keyword: else
Georg Brandl116aa622007-08-15 14:28:22 +000087
88The :keyword:`if` statement is used for conditional execution:
89
90.. productionlist::
91 if_stmt: "if" `expression` ":" `suite`
92 : ( "elif" `expression` ":" `suite` )*
93 : ["else" ":" `suite`]
94
Georg Brandl116aa622007-08-15 14:28:22 +000095It selects exactly one of the suites by evaluating the expressions one by one
96until one is found to be true (see section :ref:`booleans` for the definition of
97true and false); then that suite is executed (and no other part of the
98:keyword:`if` statement is executed or evaluated). If all expressions are
99false, the suite of the :keyword:`else` clause, if present, is executed.
100
101
102.. _while:
103
104The :keyword:`while` statement
105==============================
106
107.. index::
108 statement: while
Georg Brandl02c30562007-09-07 17:52:53 +0000109 keyword: else
Georg Brandl116aa622007-08-15 14:28:22 +0000110 pair: loop; statement
Christian Heimesfaf2f632008-01-06 16:59:19 +0000111 keyword: else
Georg Brandl116aa622007-08-15 14:28:22 +0000112
113The :keyword:`while` statement is used for repeated execution as long as an
114expression is true:
115
116.. productionlist::
117 while_stmt: "while" `expression` ":" `suite`
118 : ["else" ":" `suite`]
119
Georg Brandl116aa622007-08-15 14:28:22 +0000120This repeatedly tests the expression and, if it is true, executes the first
121suite; if the expression is false (which may be the first time it is tested) the
122suite of the :keyword:`else` clause, if present, is executed and the loop
123terminates.
124
125.. index::
126 statement: break
127 statement: continue
128
129A :keyword:`break` statement executed in the first suite terminates the loop
130without executing the :keyword:`else` clause's suite. A :keyword:`continue`
131statement executed in the first suite skips the rest of the suite and goes back
132to testing the expression.
133
134
135.. _for:
136
137The :keyword:`for` statement
138============================
139
140.. index::
141 statement: for
Georg Brandl02c30562007-09-07 17:52:53 +0000142 keyword: in
143 keyword: else
144 pair: target; list
Georg Brandl116aa622007-08-15 14:28:22 +0000145 pair: loop; statement
Christian Heimesfaf2f632008-01-06 16:59:19 +0000146 keyword: in
147 keyword: else
148 pair: target; list
Georg Brandl02c30562007-09-07 17:52:53 +0000149 object: sequence
Georg Brandl116aa622007-08-15 14:28:22 +0000150
151The :keyword:`for` statement is used to iterate over the elements of a sequence
152(such as a string, tuple or list) or other iterable object:
153
154.. productionlist::
155 for_stmt: "for" `target_list` "in" `expression_list` ":" `suite`
156 : ["else" ":" `suite`]
157
Georg Brandl116aa622007-08-15 14:28:22 +0000158The expression list is evaluated once; it should yield an iterable object. An
159iterator is created for the result of the ``expression_list``. The suite is
160then executed once for each item provided by the iterator, in the order of
161ascending indices. Each item in turn is assigned to the target list using the
Georg Brandl02c30562007-09-07 17:52:53 +0000162standard rules for assignments (see :ref:`assignment`), and then the suite is
163executed. When the items are exhausted (which is immediately when the sequence
164is empty or an iterator raises a :exc:`StopIteration` exception), the suite in
Georg Brandl116aa622007-08-15 14:28:22 +0000165the :keyword:`else` clause, if present, is executed, and the loop terminates.
166
167.. index::
168 statement: break
169 statement: continue
170
171A :keyword:`break` statement executed in the first suite terminates the loop
172without executing the :keyword:`else` clause's suite. A :keyword:`continue`
173statement executed in the first suite skips the rest of the suite and continues
174with the next item, or with the :keyword:`else` clause if there was no next
175item.
176
177The suite may assign to the variable(s) in the target list; this does not affect
178the next item assigned to it.
179
180.. index::
181 builtin: range
Georg Brandl116aa622007-08-15 14:28:22 +0000182
Georg Brandl02c30562007-09-07 17:52:53 +0000183Names in the target list are not deleted when the loop is finished, but if the
184sequence is empty, it will not have been assigned to at all by the loop. Hint:
185the built-in function :func:`range` returns an iterator of integers suitable to
186emulate the effect of Pascal's ``for i := a to b do``; e.g., ``range(3)``
187returns the list ``[0, 1, 2]``.
Georg Brandl116aa622007-08-15 14:28:22 +0000188
189.. warning::
190
191 .. index::
192 single: loop; over mutable sequence
193 single: mutable sequence; loop over
194
195 There is a subtlety when the sequence is being modified by the loop (this can
Georg Brandl02c30562007-09-07 17:52:53 +0000196 only occur for mutable sequences, i.e. lists). An internal counter is used
197 to keep track of which item is used next, and this is incremented on each
Georg Brandl116aa622007-08-15 14:28:22 +0000198 iteration. When this counter has reached the length of the sequence the loop
199 terminates. This means that if the suite deletes the current (or a previous)
Georg Brandl02c30562007-09-07 17:52:53 +0000200 item from the sequence, the next item will be skipped (since it gets the
201 index of the current item which has already been treated). Likewise, if the
202 suite inserts an item in the sequence before the current item, the current
203 item will be treated again the next time through the loop. This can lead to
204 nasty bugs that can be avoided by making a temporary copy using a slice of
205 the whole sequence, e.g., ::
Georg Brandl116aa622007-08-15 14:28:22 +0000206
Georg Brandl02c30562007-09-07 17:52:53 +0000207 for x in a[:]:
208 if x < 0: a.remove(x)
Georg Brandl116aa622007-08-15 14:28:22 +0000209
210
211.. _try:
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000212.. _except:
213.. _finally:
Georg Brandl116aa622007-08-15 14:28:22 +0000214
215The :keyword:`try` statement
216============================
217
Christian Heimesfaf2f632008-01-06 16:59:19 +0000218.. index::
219 statement: try
220 keyword: except
221 keyword: finally
Georg Brandl16174572007-09-01 12:38:06 +0000222.. index:: keyword: except
Georg Brandl116aa622007-08-15 14:28:22 +0000223
224The :keyword:`try` statement specifies exception handlers and/or cleanup code
225for a group of statements:
226
227.. productionlist::
228 try_stmt: try1_stmt | try2_stmt
229 try1_stmt: "try" ":" `suite`
Georg Brandl0068e2c2007-09-06 14:03:41 +0000230 : ("except" [`expression` ["as" `target`]] ":" `suite`)+
Georg Brandl116aa622007-08-15 14:28:22 +0000231 : ["else" ":" `suite`]
232 : ["finally" ":" `suite`]
233 try2_stmt: "try" ":" `suite`
234 : "finally" ":" `suite`
235
Christian Heimesfaf2f632008-01-06 16:59:19 +0000236
237The :keyword:`except` clause(s) specify one or more exception handlers. When no
Georg Brandl116aa622007-08-15 14:28:22 +0000238exception occurs in the :keyword:`try` clause, no exception handler is executed.
239When an exception occurs in the :keyword:`try` suite, a search for an exception
240handler is started. This search inspects the except clauses in turn until one
241is found that matches the exception. An expression-less except clause, if
242present, must be last; it matches any exception. For an except clause with an
243expression, that expression is evaluated, and the clause matches the exception
244if the resulting object is "compatible" with the exception. An object is
245compatible with an exception if it is the class or a base class of the exception
246object or a tuple containing an item compatible with the exception.
247
248If no except clause matches the exception, the search for an exception handler
249continues in the surrounding code and on the invocation stack. [#]_
250
251If the evaluation of an expression in the header of an except clause raises an
252exception, the original search for a handler is canceled and a search starts for
253the new exception in the surrounding code and on the call stack (it is treated
254as if the entire :keyword:`try` statement raised the exception).
255
256When a matching except clause is found, the exception is assigned to the target
Georg Brandl02c30562007-09-07 17:52:53 +0000257specified after the :keyword:`as` keyword in that except clause, if present, and
258the except clause's suite is executed. All except clauses must have an
259executable block. When the end of this block is reached, execution continues
260normally after the entire try statement. (This means that if two nested
261handlers exist for the same exception, and the exception occurs in the try
262clause of the inner handler, the outer handler will not handle the exception.)
263
264When an exception has been assigned using ``as target``, it is cleared at the
265end of the except clause. This is as if ::
266
267 except E as N:
268 foo
269
270was translated to ::
271
272 except E as N:
273 try:
274 foo
275 finally:
276 N = None
277 del N
278
279That means that you have to assign the exception to a different name if you want
280to be able to refer to it after the except clause. The reason for this is that
281with the traceback attached to them, exceptions will form a reference cycle with
282the stack frame, keeping all locals in that frame alive until the next garbage
283collection occurs.
Georg Brandl116aa622007-08-15 14:28:22 +0000284
285.. index::
286 module: sys
287 object: traceback
288
289Before an except clause's suite is executed, details about the exception are
290stored in the :mod:`sys` module and can be access via :func:`sys.exc_info`.
Georg Brandl02c30562007-09-07 17:52:53 +0000291:func:`sys.exc_info` returns a 3-tuple consisting of: ``exc_type``, the
292exception class; ``exc_value``, the exception instance; ``exc_traceback``, a
293traceback object (see section :ref:`types`) identifying the point in the program
294where the exception occurred. :func:`sys.exc_info` values are restored to their
295previous values (before the call) when returning from a function that handled an
296exception.
Georg Brandl116aa622007-08-15 14:28:22 +0000297
298.. index::
299 keyword: else
300 statement: return
301 statement: break
302 statement: continue
303
304The optional :keyword:`else` clause is executed if and when control flows off
305the end of the :keyword:`try` clause. [#]_ Exceptions in the :keyword:`else`
306clause are not handled by the preceding :keyword:`except` clauses.
307
308.. index:: keyword: finally
309
310If :keyword:`finally` is present, it specifies a 'cleanup' handler. The
311:keyword:`try` clause is executed, including any :keyword:`except` and
312:keyword:`else` clauses. If an exception occurs in any of the clauses and is
313not handled, the exception is temporarily saved. The :keyword:`finally` clause
314is executed. If there is a saved exception, it is re-raised at the end of the
315:keyword:`finally` clause. If the :keyword:`finally` clause raises another
316exception or executes a :keyword:`return` or :keyword:`break` statement, the
317saved exception is lost. The exception information is not available to the
318program during execution of the :keyword:`finally` clause.
319
320.. index::
321 statement: return
322 statement: break
323 statement: continue
324
325When a :keyword:`return`, :keyword:`break` or :keyword:`continue` statement is
326executed in the :keyword:`try` suite of a :keyword:`try`...\ :keyword:`finally`
327statement, the :keyword:`finally` clause is also executed 'on the way out.' A
328:keyword:`continue` statement is illegal in the :keyword:`finally` clause. (The
329reason is a problem with the current implementation --- this restriction may be
330lifted in the future).
331
332Additional information on exceptions can be found in section :ref:`exceptions`,
333and information on using the :keyword:`raise` statement to generate exceptions
334may be found in section :ref:`raise`.
335
336
337.. _with:
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000338.. _as:
Georg Brandl116aa622007-08-15 14:28:22 +0000339
340The :keyword:`with` statement
341=============================
342
343.. index:: statement: with
344
Georg Brandl116aa622007-08-15 14:28:22 +0000345The :keyword:`with` statement is used to wrap the execution of a block with
Georg Brandl02c30562007-09-07 17:52:53 +0000346methods defined by a context manager (see section :ref:`context-managers`).
347This allows common :keyword:`try`...\ :keyword:`except`...\ :keyword:`finally`
348usage patterns to be encapsulated for convenient reuse.
Georg Brandl116aa622007-08-15 14:28:22 +0000349
350.. productionlist::
351 with_stmt: "with" `expression` ["as" `target`] ":" `suite`
352
353The execution of the :keyword:`with` statement proceeds as follows:
354
355#. The context expression is evaluated to obtain a context manager.
356
357#. The context manager's :meth:`__enter__` method is invoked.
358
359#. If a target was included in the :keyword:`with` statement, the return value
360 from :meth:`__enter__` is assigned to it.
361
362 .. note::
363
Georg Brandl02c30562007-09-07 17:52:53 +0000364 The :keyword:`with` statement guarantees that if the :meth:`__enter__`
365 method returns without an error, then :meth:`__exit__` will always be
366 called. Thus, if an error occurs during the assignment to the target
367 list, it will be treated the same as an error occurring within the suite
368 would be. See step 5 below.
Georg Brandl116aa622007-08-15 14:28:22 +0000369
370#. The suite is executed.
371
Georg Brandl02c30562007-09-07 17:52:53 +0000372#. The context manager's :meth:`__exit__` method is invoked. If an exception
Georg Brandl116aa622007-08-15 14:28:22 +0000373 caused the suite to be exited, its type, value, and traceback are passed as
374 arguments to :meth:`__exit__`. Otherwise, three :const:`None` arguments are
375 supplied.
376
377 If the suite was exited due to an exception, and the return value from the
Georg Brandl02c30562007-09-07 17:52:53 +0000378 :meth:`__exit__` method was false, the exception is reraised. If the return
Georg Brandl116aa622007-08-15 14:28:22 +0000379 value was true, the exception is suppressed, and execution continues with the
380 statement following the :keyword:`with` statement.
381
Georg Brandl02c30562007-09-07 17:52:53 +0000382 If the suite was exited for any reason other than an exception, the return
383 value from :meth:`__exit__` is ignored, and execution proceeds at the normal
384 location for the kind of exit that was taken.
Georg Brandl116aa622007-08-15 14:28:22 +0000385
Georg Brandl116aa622007-08-15 14:28:22 +0000386.. seealso::
387
388 :pep:`0343` - The "with" statement
389 The specification, background, and examples for the Python :keyword:`with`
390 statement.
391
392
393.. _function:
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000394.. _def:
Georg Brandl116aa622007-08-15 14:28:22 +0000395
396Function definitions
397====================
398
399.. index::
Georg Brandl116aa622007-08-15 14:28:22 +0000400 statement: def
Christian Heimesfaf2f632008-01-06 16:59:19 +0000401 pair: function; definition
402 pair: function; name
403 pair: name; binding
Georg Brandl116aa622007-08-15 14:28:22 +0000404 object: user-defined function
405 object: function
Georg Brandl02c30562007-09-07 17:52:53 +0000406 pair: function; name
407 pair: name; binding
Georg Brandl116aa622007-08-15 14:28:22 +0000408
409A function definition defines a user-defined function object (see section
410:ref:`types`):
411
412.. productionlist::
Georg Brandl33d1ae82008-09-21 07:40:25 +0000413 funcdef: [`decorators`] "def" `funcname` "(" [`parameter_list`] ")" ["->" `expression`] ":" `suite`
Georg Brandl116aa622007-08-15 14:28:22 +0000414 decorators: `decorator`+
415 decorator: "@" `dotted_name` ["(" [`argument_list` [","]] ")"] NEWLINE
416 dotted_name: `identifier` ("." `identifier`)*
417 parameter_list: (`defparameter` ",")*
418 : ( "*" [`parameter`] ("," `defparameter`)*
419 : [, "**" `parameter`]
420 : | "**" `parameter`
421 : | `defparameter` [","] )
422 parameter: `identifier` [":" `expression`]
423 defparameter: `parameter` ["=" `expression`]
424 funcname: `identifier`
425
Georg Brandl116aa622007-08-15 14:28:22 +0000426
427A function definition is an executable statement. Its execution binds the
428function name in the current local namespace to a function object (a wrapper
429around the executable code for the function). This function object contains a
430reference to the current global namespace as the global namespace to be used
431when the function is called.
432
433The function definition does not execute the function body; this gets executed
Georg Brandl3dbca812008-07-23 16:10:53 +0000434only when the function is called. [#]_
Georg Brandl116aa622007-08-15 14:28:22 +0000435
Christian Heimesdae2a892008-04-19 00:55:37 +0000436.. index::
437 statement: @
438
Christian Heimesd8654cf2007-12-02 15:22:16 +0000439A function definition may be wrapped by one or more :term:`decorator` expressions.
Georg Brandl116aa622007-08-15 14:28:22 +0000440Decorator expressions are evaluated when the function is defined, in the scope
441that contains the function definition. The result must be a callable, which is
442invoked with the function object as the only argument. The returned value is
443bound to the function name instead of the function object. Multiple decorators
Georg Brandl02c30562007-09-07 17:52:53 +0000444are applied in nested fashion. For example, the following code ::
Georg Brandl116aa622007-08-15 14:28:22 +0000445
446 @f1(arg)
447 @f2
448 def func(): pass
449
Georg Brandl02c30562007-09-07 17:52:53 +0000450is equivalent to ::
Georg Brandl116aa622007-08-15 14:28:22 +0000451
452 def func(): pass
453 func = f1(arg)(f2(func))
454
455.. index:: triple: default; parameter; value
456
457When one or more parameters have the form *parameter* ``=`` *expression*, the
458function is said to have "default parameter values." For a parameter with a
459default value, the corresponding argument may be omitted from a call, in which
460case the parameter's default value is substituted. If a parameter has a default
Georg Brandl02c30562007-09-07 17:52:53 +0000461value, all following parameters up until the "``*``" must also have a default
462value --- this is a syntactic restriction that is not expressed by the grammar.
Georg Brandl116aa622007-08-15 14:28:22 +0000463
464**Default parameter values are evaluated when the function definition is
Georg Brandl02c30562007-09-07 17:52:53 +0000465executed.** This means that the expression is evaluated once, when the function
Georg Brandl116aa622007-08-15 14:28:22 +0000466is defined, and that that same "pre-computed" value is used for each call. This
467is especially important to understand when a default parameter is a mutable
468object, such as a list or a dictionary: if the function modifies the object
469(e.g. by appending an item to a list), the default value is in effect modified.
Georg Brandl02c30562007-09-07 17:52:53 +0000470This is generally not what was intended. A way around this is to use ``None``
Georg Brandl116aa622007-08-15 14:28:22 +0000471as the default, and explicitly test for it in the body of the function, e.g.::
472
473 def whats_on_the_telly(penguin=None):
474 if penguin is None:
475 penguin = []
476 penguin.append("property of the zoo")
477 return penguin
478
Christian Heimesdae2a892008-04-19 00:55:37 +0000479.. index::
480 statement: *
481 statement: **
482
483Function call semantics are described in more detail in section :ref:`calls`. A
Georg Brandl116aa622007-08-15 14:28:22 +0000484function call always assigns values to all parameters mentioned in the parameter
485list, either from position arguments, from keyword arguments, or from default
486values. If the form "``*identifier``" is present, it is initialized to a tuple
487receiving any excess positional parameters, defaulting to the empty tuple. If
488the form "``**identifier``" is present, it is initialized to a new dictionary
489receiving any excess keyword arguments, defaulting to a new empty dictionary.
490Parameters after "``*``" or "``*identifier``" are keyword-only parameters and
491may only be passed used keyword arguments.
492
493.. index:: pair: function; annotations
494
495Parameters may have annotations of the form "``: expression``" following the
Georg Brandl02c30562007-09-07 17:52:53 +0000496parameter name. Any parameter may have an annotation even those of the form
497``*identifier`` or ``**identifier``. Functions may have "return" annotation of
498the form "``-> expression``" after the parameter list. These annotations can be
Georg Brandl116aa622007-08-15 14:28:22 +0000499any valid Python expression and are evaluated when the function definition is
Georg Brandl02c30562007-09-07 17:52:53 +0000500executed. Annotations may be evaluated in a different order than they appear in
501the source code. The presence of annotations does not change the semantics of a
502function. The annotation values are available as values of a dictionary keyed
Georg Brandl116aa622007-08-15 14:28:22 +0000503by the parameters' names in the :attr:`__annotations__` attribute of the
504function object.
505
506.. index:: pair: lambda; form
507
508It is also possible to create anonymous functions (functions not bound to a
509name), for immediate use in expressions. This uses lambda forms, described in
510section :ref:`lambda`. Note that the lambda form is merely a shorthand for a
511simplified function definition; a function defined in a ":keyword:`def`"
512statement can be passed around or assigned to another name just like a function
513defined by a lambda form. The ":keyword:`def`" form is actually more powerful
514since it allows the execution of multiple statements and annotations.
515
516**Programmer's note:** Functions are first-class objects. A "``def``" form
517executed inside a function definition defines a local function that can be
518returned or passed around. Free variables used in the nested function can
519access the local variables of the function containing the def. See section
520:ref:`naming` for details.
521
522
523.. _class:
524
525Class definitions
526=================
527
528.. index::
Georg Brandl02c30562007-09-07 17:52:53 +0000529 object: class
Christian Heimesfaf2f632008-01-06 16:59:19 +0000530 statement: class
531 pair: class; definition
Georg Brandl116aa622007-08-15 14:28:22 +0000532 pair: class; name
533 pair: name; binding
534 pair: execution; frame
Christian Heimesfaf2f632008-01-06 16:59:19 +0000535 single: inheritance
Georg Brandl3dbca812008-07-23 16:10:53 +0000536 single: docstring
Georg Brandl116aa622007-08-15 14:28:22 +0000537
Georg Brandl02c30562007-09-07 17:52:53 +0000538A class definition defines a class object (see section :ref:`types`):
539
540.. XXX need to document PEP 3115 changes here (new metaclasses)
541
542.. productionlist::
543 classdef: [`decorators`] "class" `classname` [`inheritance`] ":" `suite`
544 inheritance: "(" [`expression_list`] ")"
545 classname: `identifier`
546
547
Georg Brandl116aa622007-08-15 14:28:22 +0000548A class definition is an executable statement. It first evaluates the
549inheritance list, if present. Each item in the inheritance list should evaluate
550to a class object or class type which allows subclassing. The class's suite is
551then executed in a new execution frame (see section :ref:`naming`), using a
552newly created local namespace and the original global namespace. (Usually, the
553suite contains only function definitions.) When the class's suite finishes
Georg Brandl3dbca812008-07-23 16:10:53 +0000554execution, its execution frame is discarded but its local namespace is
555saved. [#]_ A class object is then created using the inheritance list for the
556base classes and the saved local namespace for the attribute dictionary. The
557class name is bound to this class object in the original local namespace.
Georg Brandl116aa622007-08-15 14:28:22 +0000558
Georg Brandl02c30562007-09-07 17:52:53 +0000559Classes can also be decorated; as with functions, ::
560
561 @f1(arg)
562 @f2
563 class Foo: pass
564
565is equivalent to ::
566
567 class Foo: pass
568 Foo = f1(arg)(f2(Foo))
569
Georg Brandl116aa622007-08-15 14:28:22 +0000570**Programmer's note:** Variables defined in the class definition are class
Benjamin Petersonf04779b2008-06-28 23:05:03 +0000571variables; they are shared by instances. Instance variables can be set in a
572method with ``self.name = value``. Both class and instance variables are
573accessible through the notation "``self.name``", and an instance variable hides
574a class variable with the same name when accessed in this way. Class variables
575can be used as defaults for instance variables, but using mutable values there
576can lead to unexpected results. Descriptors can be used to create instance
577variables with different implementation details.
Georg Brandl85eb8c12007-08-31 16:33:38 +0000578
579.. XXX add link to descriptor docs above
Georg Brandl116aa622007-08-15 14:28:22 +0000580
Georg Brandl02c30562007-09-07 17:52:53 +0000581.. seealso::
582
583 :pep:`3129` - Class Decorators
584
Benjamin Peterson41181742008-07-02 20:22:54 +0000585Class definitions, like function definitions, may be wrapped by one or more
586:term:`decorator` expressions. The evaluation rules for the decorator
587expressions are the same as for functions. The result must be a class object,
588which is then bound to the class name.
Georg Brandl02c30562007-09-07 17:52:53 +0000589
590
Georg Brandl116aa622007-08-15 14:28:22 +0000591.. rubric:: Footnotes
592
Christian Heimesc3f30c42008-02-22 16:37:40 +0000593.. [#] The exception is propagated to the invocation stack only if there is no
Georg Brandl116aa622007-08-15 14:28:22 +0000594 :keyword:`finally` clause that negates the exception.
595
596.. [#] Currently, control "flows off the end" except in the case of an exception or the
597 execution of a :keyword:`return`, :keyword:`continue`, or :keyword:`break`
598 statement.
Georg Brandl3dbca812008-07-23 16:10:53 +0000599
600.. [#] A string literal appearing as the first statement in the function body is
601 transformed into the function's ``__doc__`` attribute and therefore the
602 function's :term:`docstring`.
603
604.. [#] A string literal appearing as the first statement in the class body is
605 transformed into the namespace's ``__doc__`` item and therefore the class's
606 :term:`docstring`.