blob: 927930a27e5dd091bb28bbfa1342a4be60514d9d [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
81.. index:: statement: if
Georg Brandl02c30562007-09-07 17:52:53 +000082 keyword: elif
83 keyword: else
Georg Brandl116aa622007-08-15 14:28:22 +000084
85The :keyword:`if` statement is used for conditional execution:
86
87.. productionlist::
88 if_stmt: "if" `expression` ":" `suite`
89 : ( "elif" `expression` ":" `suite` )*
90 : ["else" ":" `suite`]
91
Georg Brandl116aa622007-08-15 14:28:22 +000092It selects exactly one of the suites by evaluating the expressions one by one
93until one is found to be true (see section :ref:`booleans` for the definition of
94true and false); then that suite is executed (and no other part of the
95:keyword:`if` statement is executed or evaluated). If all expressions are
96false, the suite of the :keyword:`else` clause, if present, is executed.
97
98
99.. _while:
100
101The :keyword:`while` statement
102==============================
103
104.. index::
105 statement: while
Georg Brandl02c30562007-09-07 17:52:53 +0000106 keyword: else
Georg Brandl116aa622007-08-15 14:28:22 +0000107 pair: loop; statement
108
109The :keyword:`while` statement is used for repeated execution as long as an
110expression is true:
111
112.. productionlist::
113 while_stmt: "while" `expression` ":" `suite`
114 : ["else" ":" `suite`]
115
Georg Brandl116aa622007-08-15 14:28:22 +0000116This repeatedly tests the expression and, if it is true, executes the first
117suite; if the expression is false (which may be the first time it is tested) the
118suite of the :keyword:`else` clause, if present, is executed and the loop
119terminates.
120
121.. index::
122 statement: break
123 statement: continue
124
125A :keyword:`break` statement executed in the first suite terminates the loop
126without executing the :keyword:`else` clause's suite. A :keyword:`continue`
127statement executed in the first suite skips the rest of the suite and goes back
128to testing the expression.
129
130
131.. _for:
132
133The :keyword:`for` statement
134============================
135
136.. index::
137 statement: for
Georg Brandl02c30562007-09-07 17:52:53 +0000138 keyword: in
139 keyword: else
140 pair: target; list
Georg Brandl116aa622007-08-15 14:28:22 +0000141 pair: loop; statement
Georg Brandl02c30562007-09-07 17:52:53 +0000142 object: sequence
Georg Brandl116aa622007-08-15 14:28:22 +0000143
144The :keyword:`for` statement is used to iterate over the elements of a sequence
145(such as a string, tuple or list) or other iterable object:
146
147.. productionlist::
148 for_stmt: "for" `target_list` "in" `expression_list` ":" `suite`
149 : ["else" ":" `suite`]
150
Georg Brandl116aa622007-08-15 14:28:22 +0000151The expression list is evaluated once; it should yield an iterable object. An
152iterator is created for the result of the ``expression_list``. The suite is
153then executed once for each item provided by the iterator, in the order of
154ascending indices. Each item in turn is assigned to the target list using the
Georg Brandl02c30562007-09-07 17:52:53 +0000155standard rules for assignments (see :ref:`assignment`), and then the suite is
156executed. When the items are exhausted (which is immediately when the sequence
157is empty or an iterator raises a :exc:`StopIteration` exception), the suite in
Georg Brandl116aa622007-08-15 14:28:22 +0000158the :keyword:`else` clause, if present, is executed, and the loop terminates.
159
160.. index::
161 statement: break
162 statement: continue
163
164A :keyword:`break` statement executed in the first suite terminates the loop
165without executing the :keyword:`else` clause's suite. A :keyword:`continue`
166statement executed in the first suite skips the rest of the suite and continues
167with the next item, or with the :keyword:`else` clause if there was no next
168item.
169
170The suite may assign to the variable(s) in the target list; this does not affect
171the next item assigned to it.
172
173.. index::
174 builtin: range
Georg Brandl116aa622007-08-15 14:28:22 +0000175
Georg Brandl02c30562007-09-07 17:52:53 +0000176Names in the target list are not deleted when the loop is finished, but if the
177sequence is empty, it will not have been assigned to at all by the loop. Hint:
178the built-in function :func:`range` returns an iterator of integers suitable to
179emulate the effect of Pascal's ``for i := a to b do``; e.g., ``range(3)``
180returns the list ``[0, 1, 2]``.
Georg Brandl116aa622007-08-15 14:28:22 +0000181
182.. warning::
183
184 .. index::
185 single: loop; over mutable sequence
186 single: mutable sequence; loop over
187
188 There is a subtlety when the sequence is being modified by the loop (this can
Georg Brandl02c30562007-09-07 17:52:53 +0000189 only occur for mutable sequences, i.e. lists). An internal counter is used
190 to keep track of which item is used next, and this is incremented on each
Georg Brandl116aa622007-08-15 14:28:22 +0000191 iteration. When this counter has reached the length of the sequence the loop
192 terminates. This means that if the suite deletes the current (or a previous)
Georg Brandl02c30562007-09-07 17:52:53 +0000193 item from the sequence, the next item will be skipped (since it gets the
194 index of the current item which has already been treated). Likewise, if the
195 suite inserts an item in the sequence before the current item, the current
196 item will be treated again the next time through the loop. This can lead to
197 nasty bugs that can be avoided by making a temporary copy using a slice of
198 the whole sequence, e.g., ::
Georg Brandl116aa622007-08-15 14:28:22 +0000199
Georg Brandl02c30562007-09-07 17:52:53 +0000200 for x in a[:]:
201 if x < 0: a.remove(x)
Georg Brandl116aa622007-08-15 14:28:22 +0000202
203
204.. _try:
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000205.. _except:
206.. _finally:
Georg Brandl116aa622007-08-15 14:28:22 +0000207
208The :keyword:`try` statement
209============================
210
211.. index:: statement: try
Georg Brandl16174572007-09-01 12:38:06 +0000212.. index:: keyword: except
Georg Brandl116aa622007-08-15 14:28:22 +0000213
214The :keyword:`try` statement specifies exception handlers and/or cleanup code
215for a group of statements:
216
217.. productionlist::
218 try_stmt: try1_stmt | try2_stmt
219 try1_stmt: "try" ":" `suite`
Georg Brandl0068e2c2007-09-06 14:03:41 +0000220 : ("except" [`expression` ["as" `target`]] ":" `suite`)+
Georg Brandl116aa622007-08-15 14:28:22 +0000221 : ["else" ":" `suite`]
222 : ["finally" ":" `suite`]
223 try2_stmt: "try" ":" `suite`
224 : "finally" ":" `suite`
225
Georg Brandl0068e2c2007-09-06 14:03:41 +0000226The :keyword:`except` clause(s) specify one or more exception handlers. When no
Georg Brandl116aa622007-08-15 14:28:22 +0000227exception occurs in the :keyword:`try` clause, no exception handler is executed.
228When an exception occurs in the :keyword:`try` suite, a search for an exception
229handler is started. This search inspects the except clauses in turn until one
230is found that matches the exception. An expression-less except clause, if
231present, must be last; it matches any exception. For an except clause with an
232expression, that expression is evaluated, and the clause matches the exception
233if the resulting object is "compatible" with the exception. An object is
234compatible with an exception if it is the class or a base class of the exception
235object or a tuple containing an item compatible with the exception.
236
237If no except clause matches the exception, the search for an exception handler
238continues in the surrounding code and on the invocation stack. [#]_
239
240If the evaluation of an expression in the header of an except clause raises an
241exception, the original search for a handler is canceled and a search starts for
242the new exception in the surrounding code and on the call stack (it is treated
243as if the entire :keyword:`try` statement raised the exception).
244
245When a matching except clause is found, the exception is assigned to the target
Georg Brandl02c30562007-09-07 17:52:53 +0000246specified after the :keyword:`as` keyword in that except clause, if present, and
247the except clause's suite is executed. All except clauses must have an
248executable block. When the end of this block is reached, execution continues
249normally after the entire try statement. (This means that if two nested
250handlers exist for the same exception, and the exception occurs in the try
251clause of the inner handler, the outer handler will not handle the exception.)
252
253When an exception has been assigned using ``as target``, it is cleared at the
254end of the except clause. This is as if ::
255
256 except E as N:
257 foo
258
259was translated to ::
260
261 except E as N:
262 try:
263 foo
264 finally:
265 N = None
266 del N
267
268That means that you have to assign the exception to a different name if you want
269to be able to refer to it after the except clause. The reason for this is that
270with the traceback attached to them, exceptions will form a reference cycle with
271the stack frame, keeping all locals in that frame alive until the next garbage
272collection occurs.
Georg Brandl116aa622007-08-15 14:28:22 +0000273
274.. index::
275 module: sys
276 object: traceback
277
278Before an except clause's suite is executed, details about the exception are
279stored in the :mod:`sys` module and can be access via :func:`sys.exc_info`.
Georg Brandl02c30562007-09-07 17:52:53 +0000280:func:`sys.exc_info` returns a 3-tuple consisting of: ``exc_type``, the
281exception class; ``exc_value``, the exception instance; ``exc_traceback``, a
282traceback object (see section :ref:`types`) identifying the point in the program
283where the exception occurred. :func:`sys.exc_info` values are restored to their
284previous values (before the call) when returning from a function that handled an
285exception.
Georg Brandl116aa622007-08-15 14:28:22 +0000286
287.. index::
288 keyword: else
289 statement: return
290 statement: break
291 statement: continue
292
293The optional :keyword:`else` clause is executed if and when control flows off
294the end of the :keyword:`try` clause. [#]_ Exceptions in the :keyword:`else`
295clause are not handled by the preceding :keyword:`except` clauses.
296
297.. index:: keyword: finally
298
299If :keyword:`finally` is present, it specifies a 'cleanup' handler. The
300:keyword:`try` clause is executed, including any :keyword:`except` and
301:keyword:`else` clauses. If an exception occurs in any of the clauses and is
302not handled, the exception is temporarily saved. The :keyword:`finally` clause
303is executed. If there is a saved exception, it is re-raised at the end of the
304:keyword:`finally` clause. If the :keyword:`finally` clause raises another
305exception or executes a :keyword:`return` or :keyword:`break` statement, the
306saved exception is lost. The exception information is not available to the
307program during execution of the :keyword:`finally` clause.
308
309.. index::
310 statement: return
311 statement: break
312 statement: continue
313
314When a :keyword:`return`, :keyword:`break` or :keyword:`continue` statement is
315executed in the :keyword:`try` suite of a :keyword:`try`...\ :keyword:`finally`
316statement, the :keyword:`finally` clause is also executed 'on the way out.' A
317:keyword:`continue` statement is illegal in the :keyword:`finally` clause. (The
318reason is a problem with the current implementation --- this restriction may be
319lifted in the future).
320
321Additional information on exceptions can be found in section :ref:`exceptions`,
322and information on using the :keyword:`raise` statement to generate exceptions
323may be found in section :ref:`raise`.
324
Georg Brandl02c30562007-09-07 17:52:53 +0000325.. seealso::
326
327 :pep:`3110` - Catching exceptions in Python 3000
328 Describes the differences in :keyword:`try` statements between Python 2.x
329 and 3.0.
330
Georg Brandl116aa622007-08-15 14:28:22 +0000331
332.. _with:
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000333.. _as:
Georg Brandl116aa622007-08-15 14:28:22 +0000334
335The :keyword:`with` statement
336=============================
337
338.. index:: statement: with
339
Georg Brandl116aa622007-08-15 14:28:22 +0000340The :keyword:`with` statement is used to wrap the execution of a block with
Georg Brandl02c30562007-09-07 17:52:53 +0000341methods defined by a context manager (see section :ref:`context-managers`).
342This allows common :keyword:`try`...\ :keyword:`except`...\ :keyword:`finally`
343usage patterns to be encapsulated for convenient reuse.
Georg Brandl116aa622007-08-15 14:28:22 +0000344
345.. productionlist::
346 with_stmt: "with" `expression` ["as" `target`] ":" `suite`
347
348The execution of the :keyword:`with` statement proceeds as follows:
349
350#. The context expression is evaluated to obtain a context manager.
351
352#. The context manager's :meth:`__enter__` method is invoked.
353
354#. If a target was included in the :keyword:`with` statement, the return value
355 from :meth:`__enter__` is assigned to it.
356
357 .. note::
358
Georg Brandl02c30562007-09-07 17:52:53 +0000359 The :keyword:`with` statement guarantees that if the :meth:`__enter__`
360 method returns without an error, then :meth:`__exit__` will always be
361 called. Thus, if an error occurs during the assignment to the target
362 list, it will be treated the same as an error occurring within the suite
363 would be. See step 5 below.
Georg Brandl116aa622007-08-15 14:28:22 +0000364
365#. The suite is executed.
366
Georg Brandl02c30562007-09-07 17:52:53 +0000367#. The context manager's :meth:`__exit__` method is invoked. If an exception
Georg Brandl116aa622007-08-15 14:28:22 +0000368 caused the suite to be exited, its type, value, and traceback are passed as
369 arguments to :meth:`__exit__`. Otherwise, three :const:`None` arguments are
370 supplied.
371
372 If the suite was exited due to an exception, and the return value from the
Georg Brandl02c30562007-09-07 17:52:53 +0000373 :meth:`__exit__` method was false, the exception is reraised. If the return
Georg Brandl116aa622007-08-15 14:28:22 +0000374 value was true, the exception is suppressed, and execution continues with the
375 statement following the :keyword:`with` statement.
376
Georg Brandl02c30562007-09-07 17:52:53 +0000377 If the suite was exited for any reason other than an exception, the return
378 value from :meth:`__exit__` is ignored, and execution proceeds at the normal
379 location for the kind of exit that was taken.
Georg Brandl116aa622007-08-15 14:28:22 +0000380
381
382.. seealso::
383
384 :pep:`0343` - The "with" statement
385 The specification, background, and examples for the Python :keyword:`with`
386 statement.
387
388
389.. _function:
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000390.. _def:
Georg Brandl116aa622007-08-15 14:28:22 +0000391
392Function definitions
393====================
394
395.. index::
396 pair: function; definition
397 statement: def
Georg Brandl116aa622007-08-15 14:28:22 +0000398 object: user-defined function
399 object: function
Georg Brandl02c30562007-09-07 17:52:53 +0000400 pair: function; name
401 pair: name; binding
Georg Brandl116aa622007-08-15 14:28:22 +0000402
403A function definition defines a user-defined function object (see section
404:ref:`types`):
405
406.. productionlist::
407 funcdef: [`decorators`] "def" `funcname` "(" [`parameter_list`] ")" ["->" `expression`]? ":" `suite`
408 decorators: `decorator`+
409 decorator: "@" `dotted_name` ["(" [`argument_list` [","]] ")"] NEWLINE
410 dotted_name: `identifier` ("." `identifier`)*
411 parameter_list: (`defparameter` ",")*
412 : ( "*" [`parameter`] ("," `defparameter`)*
413 : [, "**" `parameter`]
414 : | "**" `parameter`
415 : | `defparameter` [","] )
416 parameter: `identifier` [":" `expression`]
417 defparameter: `parameter` ["=" `expression`]
418 funcname: `identifier`
419
Georg Brandl116aa622007-08-15 14:28:22 +0000420
421A function definition is an executable statement. Its execution binds the
422function name in the current local namespace to a function object (a wrapper
423around the executable code for the function). This function object contains a
424reference to the current global namespace as the global namespace to be used
425when the function is called.
426
427The function definition does not execute the function body; this gets executed
428only when the function is called.
429
Christian Heimesd8654cf2007-12-02 15:22:16 +0000430A function definition may be wrapped by one or more :term:`decorator` expressions.
Georg Brandl116aa622007-08-15 14:28:22 +0000431Decorator expressions are evaluated when the function is defined, in the scope
432that contains the function definition. The result must be a callable, which is
433invoked with the function object as the only argument. The returned value is
434bound to the function name instead of the function object. Multiple decorators
Georg Brandl02c30562007-09-07 17:52:53 +0000435are applied in nested fashion. For example, the following code ::
Georg Brandl116aa622007-08-15 14:28:22 +0000436
437 @f1(arg)
438 @f2
439 def func(): pass
440
Georg Brandl02c30562007-09-07 17:52:53 +0000441is equivalent to ::
Georg Brandl116aa622007-08-15 14:28:22 +0000442
443 def func(): pass
444 func = f1(arg)(f2(func))
445
446.. index:: triple: default; parameter; value
447
448When one or more parameters have the form *parameter* ``=`` *expression*, the
449function is said to have "default parameter values." For a parameter with a
450default value, the corresponding argument may be omitted from a call, in which
451case the parameter's default value is substituted. If a parameter has a default
Georg Brandl02c30562007-09-07 17:52:53 +0000452value, all following parameters up until the "``*``" must also have a default
453value --- this is a syntactic restriction that is not expressed by the grammar.
Georg Brandl116aa622007-08-15 14:28:22 +0000454
455**Default parameter values are evaluated when the function definition is
Georg Brandl02c30562007-09-07 17:52:53 +0000456executed.** This means that the expression is evaluated once, when the function
Georg Brandl116aa622007-08-15 14:28:22 +0000457is defined, and that that same "pre-computed" value is used for each call. This
458is especially important to understand when a default parameter is a mutable
459object, such as a list or a dictionary: if the function modifies the object
460(e.g. by appending an item to a list), the default value is in effect modified.
Georg Brandl02c30562007-09-07 17:52:53 +0000461This is generally not what was intended. A way around this is to use ``None``
Georg Brandl116aa622007-08-15 14:28:22 +0000462as the default, and explicitly test for it in the body of the function, e.g.::
463
464 def whats_on_the_telly(penguin=None):
465 if penguin is None:
466 penguin = []
467 penguin.append("property of the zoo")
468 return penguin
469
Georg Brandl02c30562007-09-07 17:52:53 +0000470Function call semantics are described in more detail in section :ref:`calls`. A
Georg Brandl116aa622007-08-15 14:28:22 +0000471function call always assigns values to all parameters mentioned in the parameter
472list, either from position arguments, from keyword arguments, or from default
473values. If the form "``*identifier``" is present, it is initialized to a tuple
474receiving any excess positional parameters, defaulting to the empty tuple. If
475the form "``**identifier``" is present, it is initialized to a new dictionary
476receiving any excess keyword arguments, defaulting to a new empty dictionary.
477Parameters after "``*``" or "``*identifier``" are keyword-only parameters and
478may only be passed used keyword arguments.
479
480.. index:: pair: function; annotations
481
482Parameters may have annotations of the form "``: expression``" following the
Georg Brandl02c30562007-09-07 17:52:53 +0000483parameter name. Any parameter may have an annotation even those of the form
484``*identifier`` or ``**identifier``. Functions may have "return" annotation of
485the form "``-> expression``" after the parameter list. These annotations can be
Georg Brandl116aa622007-08-15 14:28:22 +0000486any valid Python expression and are evaluated when the function definition is
Georg Brandl02c30562007-09-07 17:52:53 +0000487executed. Annotations may be evaluated in a different order than they appear in
488the source code. The presence of annotations does not change the semantics of a
489function. The annotation values are available as values of a dictionary keyed
Georg Brandl116aa622007-08-15 14:28:22 +0000490by the parameters' names in the :attr:`__annotations__` attribute of the
491function object.
492
493.. index:: pair: lambda; form
494
495It is also possible to create anonymous functions (functions not bound to a
496name), for immediate use in expressions. This uses lambda forms, described in
497section :ref:`lambda`. Note that the lambda form is merely a shorthand for a
498simplified function definition; a function defined in a ":keyword:`def`"
499statement can be passed around or assigned to another name just like a function
500defined by a lambda form. The ":keyword:`def`" form is actually more powerful
501since it allows the execution of multiple statements and annotations.
502
503**Programmer's note:** Functions are first-class objects. A "``def``" form
504executed inside a function definition defines a local function that can be
505returned or passed around. Free variables used in the nested function can
506access the local variables of the function containing the def. See section
507:ref:`naming` for details.
508
509
510.. _class:
511
512Class definitions
513=================
514
515.. index::
516 pair: class; definition
517 statement: class
Georg Brandl02c30562007-09-07 17:52:53 +0000518 object: class
Georg Brandl116aa622007-08-15 14:28:22 +0000519 single: inheritance
520 pair: class; name
521 pair: name; binding
522 pair: execution; frame
523
Georg Brandl02c30562007-09-07 17:52:53 +0000524A class definition defines a class object (see section :ref:`types`):
525
526.. XXX need to document PEP 3115 changes here (new metaclasses)
527
528.. productionlist::
529 classdef: [`decorators`] "class" `classname` [`inheritance`] ":" `suite`
530 inheritance: "(" [`expression_list`] ")"
531 classname: `identifier`
532
533
Georg Brandl116aa622007-08-15 14:28:22 +0000534A class definition is an executable statement. It first evaluates the
535inheritance list, if present. Each item in the inheritance list should evaluate
536to a class object or class type which allows subclassing. The class's suite is
537then executed in a new execution frame (see section :ref:`naming`), using a
538newly created local namespace and the original global namespace. (Usually, the
539suite contains only function definitions.) When the class's suite finishes
540execution, its execution frame is discarded but its local namespace is saved. A
541class object is then created using the inheritance list for the base classes and
542the saved local namespace for the attribute dictionary. The class name is bound
543to this class object in the original local namespace.
544
Georg Brandl02c30562007-09-07 17:52:53 +0000545Classes can also be decorated; as with functions, ::
546
547 @f1(arg)
548 @f2
549 class Foo: pass
550
551is equivalent to ::
552
553 class Foo: pass
554 Foo = f1(arg)(f2(Foo))
555
Georg Brandl116aa622007-08-15 14:28:22 +0000556**Programmer's note:** Variables defined in the class definition are class
557variables; they are shared by all instances. To define instance variables, they
558must be given a value in the :meth:`__init__` method or in another method. Both
559class and instance variables are accessible through the notation
560"``self.name``", and an instance variable hides a class variable with the same
561name when accessed in this way. Class variables with immutable values can be
Georg Brandl9afde1c2007-11-01 20:32:30 +0000562used as defaults for instance variables. Descriptors can be used to create
Georg Brandl85eb8c12007-08-31 16:33:38 +0000563instance variables with different implementation details.
564
565.. XXX add link to descriptor docs above
Georg Brandl116aa622007-08-15 14:28:22 +0000566
Georg Brandl02c30562007-09-07 17:52:53 +0000567.. seealso::
568
569 :pep:`3129` - Class Decorators
570
571
572
Georg Brandl116aa622007-08-15 14:28:22 +0000573.. rubric:: Footnotes
574
575.. [#] The exception is propogated to the invocation stack only if there is no
576 :keyword:`finally` clause that negates the exception.
577
578.. [#] Currently, control "flows off the end" except in the case of an exception or the
579 execution of a :keyword:`return`, :keyword:`continue`, or :keyword:`break`
580 statement.