blob: 56e0769983d8de43c5ef87b70a1b2b1f0d1b83da [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +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
16handlers and/or cleanup code for a group of statements. Function and class
17definitions are also syntactically compound statements.
18
19.. index::
20 single: clause
21 single: suite
22
23Compound statements consist of one or more 'clauses.' A clause consists of a
24header and a 'suite.' The clause headers of a particular compound statement are
25all at the same indentation level. Each clause header begins with a uniquely
26identifying keyword and ends with a colon. A suite is a group of statements
27controlled by a clause. A suite can be one or more semicolon-separated simple
28statements on the same line as the header, following the header's colon, or it
29can be one or more indented statements on subsequent lines. Only the latter
30form of suite can contain nested compound statements; the following is illegal,
31mostly because it wouldn't be clear to which :keyword:`if` clause a following
32:keyword:`else` clause would belong: ::
33
34 if test1: if test2: print x
35
36Also note that the semicolon binds tighter than the colon in this context, so
37that in the following example, either all or none of the :keyword:`print`
38statements are executed::
39
40 if x < y < z: print x; print y; print z
41
42Summarizing:
43
44.. productionlist::
45 compound_stmt: `if_stmt`
46 : | `while_stmt`
47 : | `for_stmt`
Benjamin Petersonb7b8bff2008-06-29 13:43:07 +000048 : | `try_stmt`
Georg Brandl8ec7f652007-08-15 14:28:01 +000049 : | `with_stmt`
50 : | `funcdef`
51 : | `classdef`
Andrew M. Kuchlingd51e8422008-03-13 11:07:35 +000052 : | `decorated`
Georg Brandl8ec7f652007-08-15 14:28:01 +000053 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:
Georg Brandlb19be572007-12-29 10:57:00 +000073.. _elif:
74.. _else:
Georg Brandl8ec7f652007-08-15 14:28:01 +000075
76The :keyword:`if` statement
77===========================
78
Georg Brandl62658332008-01-05 19:29:45 +000079.. index::
80 statement: if
81 keyword: elif
82 keyword: else
Georg Brandl8ec7f652007-08-15 14:28:01 +000083
84The :keyword:`if` statement is used for conditional execution:
85
86.. productionlist::
87 if_stmt: "if" `expression` ":" `suite`
88 : ( "elif" `expression` ":" `suite` )*
89 : ["else" ":" `suite`]
90
Georg Brandl8ec7f652007-08-15 14:28:01 +000091It selects exactly one of the suites by evaluating the expressions one by one
92until one is found to be true (see section :ref:`booleans` for the definition of
93true and false); then that suite is executed (and no other part of the
94:keyword:`if` statement is executed or evaluated). If all expressions are
95false, the suite of the :keyword:`else` clause, if present, is executed.
96
97
98.. _while:
99
100The :keyword:`while` statement
101==============================
102
103.. index::
104 statement: while
105 pair: loop; statement
Georg Brandl62658332008-01-05 19:29:45 +0000106 keyword: else
Georg Brandl8ec7f652007-08-15 14:28:01 +0000107
108The :keyword:`while` statement is used for repeated execution as long as an
109expression is true:
110
111.. productionlist::
112 while_stmt: "while" `expression` ":" `suite`
113 : ["else" ":" `suite`]
114
Georg Brandl8ec7f652007-08-15 14:28:01 +0000115This 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
Georg Brandl62658332008-01-05 19:29:45 +0000138 keyword: in
139 keyword: else
140 pair: target; list
141 object: sequence
Georg Brandl8ec7f652007-08-15 14:28:01 +0000142
143The :keyword:`for` statement is used to iterate over the elements of a sequence
144(such as a string, tuple or list) or other iterable object:
145
146.. productionlist::
147 for_stmt: "for" `target_list` "in" `expression_list` ":" `suite`
148 : ["else" ":" `suite`]
149
Georg Brandl8ec7f652007-08-15 14:28:01 +0000150The expression list is evaluated once; it should yield an iterable object. An
151iterator is created for the result of the ``expression_list``. The suite is
152then executed once for each item provided by the iterator, in the order of
153ascending indices. Each item in turn is assigned to the target list using the
154standard rules for assignments, and then the suite is executed. When the items
155are exhausted (which is immediately when the sequence is empty), the suite in
156the :keyword:`else` clause, if present, is executed, and the loop terminates.
157
158.. index::
159 statement: break
160 statement: continue
161
162A :keyword:`break` statement executed in the first suite terminates the loop
163without executing the :keyword:`else` clause's suite. A :keyword:`continue`
164statement executed in the first suite skips the rest of the suite and continues
165with the next item, or with the :keyword:`else` clause if there was no next
166item.
167
168The suite may assign to the variable(s) in the target list; this does not affect
169the next item assigned to it.
170
171.. index::
172 builtin: range
173 pair: Pascal; language
174
175The target list is not deleted when the loop is finished, but if the sequence is
176empty, it will not have been assigned to at all by the loop. Hint: the built-in
177function :func:`range` returns a sequence of integers suitable to emulate the
178effect of Pascal's ``for i := a to b do``; e.g., ``range(3)`` returns the list
179``[0, 1, 2]``.
180
Georg Brandl16a57f62009-04-27 15:29:09 +0000181.. note::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000182
183 .. index::
184 single: loop; over mutable sequence
185 single: mutable sequence; loop over
186
187 There is a subtlety when the sequence is being modified by the loop (this can
188 only occur for mutable sequences, i.e. lists). An internal counter is used to
189 keep track of which item is used next, and this is incremented on each
190 iteration. When this counter has reached the length of the sequence the loop
191 terminates. This means that if the suite deletes the current (or a previous)
192 item from the sequence, the next item will be skipped (since it gets the index
193 of the current item which has already been treated). Likewise, if the suite
194 inserts an item in the sequence before the current item, the current item will
195 be treated again the next time through the loop. This can lead to nasty bugs
196 that can be avoided by making a temporary copy using a slice of the whole
Georg Brandl456cb1e2009-04-13 12:36:18 +0000197 sequence, e.g., ::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000198
Georg Brandl456cb1e2009-04-13 12:36:18 +0000199 for x in a[:]:
200 if x < 0: a.remove(x)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000201
202
203.. _try:
Georg Brandlb19be572007-12-29 10:57:00 +0000204.. _except:
205.. _finally:
Georg Brandl8ec7f652007-08-15 14:28:01 +0000206
207The :keyword:`try` statement
208============================
209
Georg Brandl62658332008-01-05 19:29:45 +0000210.. index::
211 statement: try
212 keyword: except
213 keyword: finally
Georg Brandl8ec7f652007-08-15 14:28:01 +0000214
215The :keyword:`try` statement specifies exception handlers and/or cleanup code
216for a group of statements:
217
218.. productionlist::
219 try_stmt: try1_stmt | try2_stmt
220 try1_stmt: "try" ":" `suite`
Georg Brandl865cd642008-10-16 21:38:48 +0000221 : ("except" [`expression` [("as" | ",") `target`]] ":" `suite`)+
Georg Brandl8ec7f652007-08-15 14:28:01 +0000222 : ["else" ":" `suite`]
223 : ["finally" ":" `suite`]
224 try2_stmt: "try" ":" `suite`
225 : "finally" ":" `suite`
226
227.. versionchanged:: 2.5
228 In previous versions of Python, :keyword:`try`...\ :keyword:`except`...\
229 :keyword:`finally` did not work. :keyword:`try`...\ :keyword:`except` had to be
230 nested in :keyword:`try`...\ :keyword:`finally`.
231
Georg Brandl8ec7f652007-08-15 14:28:01 +0000232The :keyword:`except` clause(s) specify one or more exception handlers. When no
233exception occurs in the :keyword:`try` clause, no exception handler is executed.
234When an exception occurs in the :keyword:`try` suite, a search for an exception
235handler is started. This search inspects the except clauses in turn until one
236is found that matches the exception. An expression-less except clause, if
237present, must be last; it matches any exception. For an except clause with an
238expression, that expression is evaluated, and the clause matches the exception
239if the resulting object is "compatible" with the exception. An object is
240compatible with an exception if it is the class or a base class of the exception
Raymond Hettingerd9edd822012-10-12 19:44:35 -0700241object, or a tuple containing an item compatible with the exception.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000242
243If no except clause matches the exception, the search for an exception handler
244continues in the surrounding code and on the invocation stack. [#]_
245
246If the evaluation of an expression in the header of an except clause raises an
247exception, the original search for a handler is canceled and a search starts for
248the new exception in the surrounding code and on the call stack (it is treated
249as if the entire :keyword:`try` statement raised the exception).
250
251When a matching except clause is found, the exception is assigned to the target
252specified in that except clause, if present, and the except clause's suite is
253executed. All except clauses must have an executable block. When the end of
254this block is reached, execution continues normally after the entire try
255statement. (This means that if two nested handlers exist for the same
256exception, and the exception occurs in the try clause of the inner handler, the
257outer handler will not handle the exception.)
258
259.. index::
260 module: sys
261 object: traceback
262 single: exc_type (in module sys)
263 single: exc_value (in module sys)
264 single: exc_traceback (in module sys)
265
266Before an except clause's suite is executed, details about the exception are
267assigned to three variables in the :mod:`sys` module: ``sys.exc_type`` receives
268the object identifying the exception; ``sys.exc_value`` receives the exception's
269parameter; ``sys.exc_traceback`` receives a traceback object (see section
270:ref:`types`) identifying the point in the program where the exception
271occurred. These details are also available through the :func:`sys.exc_info`
272function, which returns a tuple ``(exc_type, exc_value, exc_traceback)``. Use
273of the corresponding variables is deprecated in favor of this function, since
274their use is unsafe in a threaded program. As of Python 1.5, the variables are
275restored to their previous values (before the call) when returning from a
276function that handled an exception.
277
278.. index::
279 keyword: else
280 statement: return
281 statement: break
282 statement: continue
283
284The optional :keyword:`else` clause is executed if and when control flows off
285the end of the :keyword:`try` clause. [#]_ Exceptions in the :keyword:`else`
286clause are not handled by the preceding :keyword:`except` clauses.
287
288.. index:: keyword: finally
289
Mark Dickinson5a53a412012-09-24 20:25:24 +0100290If :keyword:`finally` is present, it specifies a 'cleanup' handler. The
291:keyword:`try` clause is executed, including any :keyword:`except` and
292:keyword:`else` clauses. If an exception occurs in any of the clauses and is
293not handled, the exception is temporarily saved. The :keyword:`finally` clause
294is executed. If there is a saved exception, it is re-raised at the end of the
295:keyword:`finally` clause. If the :keyword:`finally` clause raises another
296exception or executes a :keyword:`return` or :keyword:`break` statement, the
Sandro Tosic19d7b62013-01-27 00:22:33 +0100297saved exception is discarded::
Andrew Svetlov6bcd00a2012-08-14 15:44:53 +0300298
299 def f():
300 try:
301 1/0
302 finally:
303 return 42
304
305 >>> f()
306 42
307
308The exception information is not available to the program during execution of
309the :keyword:`finally` clause.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000310
311.. index::
312 statement: return
313 statement: break
314 statement: continue
315
316When a :keyword:`return`, :keyword:`break` or :keyword:`continue` statement is
317executed in the :keyword:`try` suite of a :keyword:`try`...\ :keyword:`finally`
318statement, the :keyword:`finally` clause is also executed 'on the way out.' A
319:keyword:`continue` statement is illegal in the :keyword:`finally` clause. (The
320reason is a problem with the current implementation --- this restriction may be
321lifted in the future).
322
323Additional information on exceptions can be found in section :ref:`exceptions`,
324and information on using the :keyword:`raise` statement to generate exceptions
325may be found in section :ref:`raise`.
326
327
328.. _with:
Georg Brandlb19be572007-12-29 10:57:00 +0000329.. _as:
Georg Brandl8ec7f652007-08-15 14:28:01 +0000330
331The :keyword:`with` statement
332=============================
333
Terry Jan Reedycd3d7412014-04-29 00:58:48 -0400334.. index::
335 statement: with
336 single: as; with statement
Georg Brandl8ec7f652007-08-15 14:28:01 +0000337
338.. versionadded:: 2.5
339
340The :keyword:`with` statement is used to wrap the execution of a block with
341methods defined by a context manager (see section :ref:`context-managers`). This
342allows common :keyword:`try`...\ :keyword:`except`...\ :keyword:`finally` usage
343patterns to be encapsulated for convenient reuse.
344
345.. productionlist::
Georg Brandl944f6842009-05-25 21:02:56 +0000346 with_stmt: "with" with_item ("," with_item)* ":" `suite`
347 with_item: `expression` ["as" `target`]
Georg Brandl8ec7f652007-08-15 14:28:01 +0000348
Georg Brandl944f6842009-05-25 21:02:56 +0000349The execution of the :keyword:`with` statement with one "item" proceeds as follows:
Georg Brandl8ec7f652007-08-15 14:28:01 +0000350
Georg Brandl21946af2010-10-06 09:28:45 +0000351#. The context expression (the expression given in the :token:`with_item`) is
352 evaluated to obtain a context manager.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000353
Benjamin Peterson1880d8b2009-05-25 13:13:44 +0000354#. The context manager's :meth:`__exit__` is loaded for later use.
355
Georg Brandl8ec7f652007-08-15 14:28:01 +0000356#. The context manager's :meth:`__enter__` method is invoked.
357
358#. If a target was included in the :keyword:`with` statement, the return value
359 from :meth:`__enter__` is assigned to it.
360
361 .. note::
362
363 The :keyword:`with` statement guarantees that if the :meth:`__enter__` method
364 returns without an error, then :meth:`__exit__` will always be called. Thus, if
365 an error occurs during the assignment to the target list, it will be treated the
Benjamin Peterson1880d8b2009-05-25 13:13:44 +0000366 same as an error occurring within the suite would be. See step 6 below.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000367
368#. The suite is executed.
369
370#. The context manager's :meth:`__exit__` method is invoked. If an exception
371 caused the suite to be exited, its type, value, and traceback are passed as
372 arguments to :meth:`__exit__`. Otherwise, three :const:`None` arguments are
373 supplied.
374
375 If the suite was exited due to an exception, and the return value from the
376 :meth:`__exit__` method was false, the exception is reraised. If the return
377 value was true, the exception is suppressed, and execution continues with the
378 statement following the :keyword:`with` statement.
379
380 If the suite was exited for any reason other than an exception, the return value
381 from :meth:`__exit__` is ignored, and execution proceeds at the normal location
382 for the kind of exit that was taken.
383
Georg Brandl944f6842009-05-25 21:02:56 +0000384With more than one item, the context managers are processed as if multiple
385:keyword:`with` statements were nested::
386
387 with A() as a, B() as b:
388 suite
389
390is equivalent to ::
391
392 with A() as a:
393 with B() as b:
394 suite
395
Georg Brandl8ec7f652007-08-15 14:28:01 +0000396.. note::
397
398 In Python 2.5, the :keyword:`with` statement is only allowed when the
Georg Brandl62658332008-01-05 19:29:45 +0000399 ``with_statement`` feature has been enabled. It is always enabled in
400 Python 2.6.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000401
Georg Brandl944f6842009-05-25 21:02:56 +0000402.. versionchanged:: 2.7
403 Support for multiple context expressions.
404
Georg Brandl8ec7f652007-08-15 14:28:01 +0000405.. seealso::
406
407 :pep:`0343` - The "with" statement
408 The specification, background, and examples for the Python :keyword:`with`
409 statement.
410
411
Chris Jerdonekcf4710c2012-12-25 14:50:21 -0800412.. index::
413 single: parameter; function definition
414
Georg Brandl8ec7f652007-08-15 14:28:01 +0000415.. _function:
Georg Brandlb19be572007-12-29 10:57:00 +0000416.. _def:
Georg Brandl8ec7f652007-08-15 14:28:01 +0000417
418Function definitions
419====================
420
421.. index::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000422 statement: def
Georg Brandl62658332008-01-05 19:29:45 +0000423 pair: function; definition
424 pair: function; name
425 pair: name; binding
Georg Brandl8ec7f652007-08-15 14:28:01 +0000426 object: user-defined function
427 object: function
428
429A function definition defines a user-defined function object (see section
430:ref:`types`):
431
432.. productionlist::
Andrew M. Kuchlingd51e8422008-03-13 11:07:35 +0000433 decorated: decorators (classdef | funcdef)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000434 decorators: `decorator`+
435 decorator: "@" `dotted_name` ["(" [`argument_list` [","]] ")"] NEWLINE
Andrew M. Kuchlingd51e8422008-03-13 11:07:35 +0000436 funcdef: "def" `funcname` "(" [`parameter_list`] ")" ":" `suite`
Georg Brandl8ec7f652007-08-15 14:28:01 +0000437 dotted_name: `identifier` ("." `identifier`)*
438 parameter_list: (`defparameter` ",")*
Chris Jerdonek32473e72012-10-25 17:26:10 -0700439 : ( "*" `identifier` ["," "**" `identifier`]
Georg Brandl8ec7f652007-08-15 14:28:01 +0000440 : | "**" `identifier`
441 : | `defparameter` [","] )
442 defparameter: `parameter` ["=" `expression`]
443 sublist: `parameter` ("," `parameter`)* [","]
444 parameter: `identifier` | "(" `sublist` ")"
445 funcname: `identifier`
446
Georg Brandl8ec7f652007-08-15 14:28:01 +0000447A function definition is an executable statement. Its execution binds the
448function name in the current local namespace to a function object (a wrapper
449around the executable code for the function). This function object contains a
450reference to the current global namespace as the global namespace to be used
451when the function is called.
452
453The function definition does not execute the function body; this gets executed
Georg Brandle64f7382008-07-20 11:50:29 +0000454only when the function is called. [#]_
Georg Brandl8ec7f652007-08-15 14:28:01 +0000455
Andrew M. Kuchling3822af62008-04-15 13:10:07 +0000456.. index::
457 statement: @
458
Georg Brandl584265b2007-12-02 14:58:50 +0000459A function definition may be wrapped by one or more :term:`decorator` expressions.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000460Decorator expressions are evaluated when the function is defined, in the scope
461that contains the function definition. The result must be a callable, which is
462invoked with the function object as the only argument. The returned value is
463bound to the function name instead of the function object. Multiple decorators
464are applied in nested fashion. For example, the following code::
465
466 @f1(arg)
467 @f2
468 def func(): pass
469
470is equivalent to::
471
472 def func(): pass
473 func = f1(arg)(f2(func))
474
Chris Jerdonekcf4710c2012-12-25 14:50:21 -0800475.. index::
476 triple: default; parameter; value
477 single: argument; function definition
Georg Brandl8ec7f652007-08-15 14:28:01 +0000478
Chris Jerdonekcf4710c2012-12-25 14:50:21 -0800479When one or more top-level :term:`parameters <parameter>` have the form
480*parameter* ``=`` *expression*, the function is said to have "default parameter
481values." For a parameter with a default value, the corresponding
482:term:`argument` may be omitted from a call, in which
483case the parameter's default value is substituted. If a
Georg Brandl8ec7f652007-08-15 14:28:01 +0000484parameter has a default value, all following parameters must also have a default
485value --- this is a syntactic restriction that is not expressed by the grammar.
486
487**Default parameter values are evaluated when the function definition is
488executed.** This means that the expression is evaluated once, when the function
Ezio Melotti1e87da12011-10-19 10:39:35 +0300489is defined, and that the same "pre-computed" value is used for each call. This
Georg Brandl8ec7f652007-08-15 14:28:01 +0000490is especially important to understand when a default parameter is a mutable
491object, such as a list or a dictionary: if the function modifies the object
492(e.g. by appending an item to a list), the default value is in effect modified.
493This is generally not what was intended. A way around this is to use ``None``
494as the default, and explicitly test for it in the body of the function, e.g.::
495
496 def whats_on_the_telly(penguin=None):
497 if penguin is None:
498 penguin = []
499 penguin.append("property of the zoo")
500 return penguin
501
Andrew M. Kuchling3822af62008-04-15 13:10:07 +0000502.. index::
503 statement: *
504 statement: **
505
Georg Brandl8ec7f652007-08-15 14:28:01 +0000506Function call semantics are described in more detail in section :ref:`calls`. A
507function call always assigns values to all parameters mentioned in the parameter
508list, either from position arguments, from keyword arguments, or from default
509values. If the form "``*identifier``" is present, it is initialized to a tuple
510receiving any excess positional parameters, defaulting to the empty tuple. If
511the form "``**identifier``" is present, it is initialized to a new dictionary
512receiving any excess keyword arguments, defaulting to a new empty dictionary.
513
Georg Brandlcff39b02013-10-06 10:26:58 +0200514.. index:: pair: lambda; expression
Georg Brandl8ec7f652007-08-15 14:28:01 +0000515
516It is also possible to create anonymous functions (functions not bound to a
Georg Brandlcff39b02013-10-06 10:26:58 +0200517name), for immediate use in expressions. This uses lambda expressions, described in
518section :ref:`lambda`. Note that the lambda expression is merely a shorthand for a
Georg Brandl8ec7f652007-08-15 14:28:01 +0000519simplified function definition; a function defined in a ":keyword:`def`"
520statement can be passed around or assigned to another name just like a function
Georg Brandlcff39b02013-10-06 10:26:58 +0200521defined by a lambda expression. The ":keyword:`def`" form is actually more powerful
Georg Brandl8ec7f652007-08-15 14:28:01 +0000522since it allows the execution of multiple statements.
523
524**Programmer's note:** Functions are first-class objects. A "``def``" form
525executed inside a function definition defines a local function that can be
526returned or passed around. Free variables used in the nested function can
527access the local variables of the function containing the def. See section
528:ref:`naming` for details.
529
530
531.. _class:
532
533Class definitions
534=================
535
536.. index::
Georg Brandl62658332008-01-05 19:29:45 +0000537 object: class
Georg Brandl8ec7f652007-08-15 14:28:01 +0000538 statement: class
Georg Brandl62658332008-01-05 19:29:45 +0000539 pair: class; definition
540 pair: class; name
541 pair: name; binding
542 pair: execution; frame
543 single: inheritance
Georg Brandle64f7382008-07-20 11:50:29 +0000544 single: docstring
Georg Brandl8ec7f652007-08-15 14:28:01 +0000545
546A class definition defines a class object (see section :ref:`types`):
547
548.. productionlist::
549 classdef: "class" `classname` [`inheritance`] ":" `suite`
550 inheritance: "(" [`expression_list`] ")"
551 classname: `identifier`
552
Georg Brandl8ec7f652007-08-15 14:28:01 +0000553A class definition is an executable statement. It first evaluates the
554inheritance list, if present. Each item in the inheritance list should evaluate
555to a class object or class type which allows subclassing. The class's suite is
556then executed in a new execution frame (see section :ref:`naming`), using a
557newly created local namespace and the original global namespace. (Usually, the
558suite contains only function definitions.) When the class's suite finishes
Georg Brandle64f7382008-07-20 11:50:29 +0000559execution, its execution frame is discarded but its local namespace is
560saved. [#]_ A class object is then created using the inheritance list for the
561base classes and the saved local namespace for the attribute dictionary. The
562class name is bound to this class object in the original local namespace.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000563
564**Programmer's note:** Variables defined in the class definition are class
Georg Brandl62658332008-01-05 19:29:45 +0000565variables; they are shared by all instances. To create instance variables, they
566can be set in a method with ``self.name = value``. Both class and instance
567variables are accessible through the notation "``self.name``", and an instance
568variable hides a class variable with the same name when accessed in this way.
569Class variables can be used as defaults for instance variables, but using
570mutable values there can lead to unexpected results. For :term:`new-style
571class`\es, descriptors can be used to create instance variables with different
Georg Brandla7395032007-10-21 12:15:05 +0000572implementation details.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000573
Benjamin Peterson6e4856a2008-06-28 23:06:49 +0000574Class definitions, like function definitions, may be wrapped by one or more
575:term:`decorator` expressions. The evaluation rules for the decorator
576expressions are the same as for functions. The result must be a class object,
577which is then bound to the class name.
Andrew M. Kuchlingd51e8422008-03-13 11:07:35 +0000578
Georg Brandl8ec7f652007-08-15 14:28:01 +0000579.. rubric:: Footnotes
580
Ezio Melotti99c9c852011-06-26 11:25:28 +0300581.. [#] The exception is propagated to the invocation stack unless
582 there is a :keyword:`finally` clause which happens to raise another
583 exception. That new exception causes the old one to be lost.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000584
585.. [#] Currently, control "flows off the end" except in the case of an exception or the
586 execution of a :keyword:`return`, :keyword:`continue`, or :keyword:`break`
587 statement.
Georg Brandle64f7382008-07-20 11:50:29 +0000588
589.. [#] A string literal appearing as the first statement in the function body is
590 transformed into the function's ``__doc__`` attribute and therefore the
591 function's :term:`docstring`.
592
593.. [#] A string literal appearing as the first statement in the class body is
594 transformed into the namespace's ``__doc__`` item and therefore the class's
595 :term:`docstring`.