blob: 5f1ea92ed460f35d8de33da063927afaf3980745 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001
2.. _execmodel:
3
4***************
5Execution model
6***************
7
Georg Brandl116aa622007-08-15 14:28:22 +00008.. index::
Nick Coghlan91e561a2015-08-05 23:07:24 +10009 single: execution model
Georg Brandl116aa622007-08-15 14:28:22 +000010 pair: code; block
Georg Brandl116aa622007-08-15 14:28:22 +000011
Nick Coghlan91e561a2015-08-05 23:07:24 +100012.. _prog_structure:
Georg Brandl116aa622007-08-15 14:28:22 +000013
R David Murray51d3f8b2015-11-20 09:57:20 -050014Structure of a program
15======================
Georg Brandl116aa622007-08-15 14:28:22 +000016
Georg Brandl96593ed2007-09-07 14:15:41 +000017.. index:: block
Georg Brandl116aa622007-08-15 14:28:22 +000018
Nick Coghlan91e561a2015-08-05 23:07:24 +100019A Python program is constructed from code blocks.
Georg Brandl116aa622007-08-15 14:28:22 +000020A :dfn:`block` is a piece of Python program text that is executed as a unit.
21The following are blocks: a module, a function body, and a class definition.
22Each command typed interactively is a block. A script file (a file given as
Raymond Hettingeraa7886d2014-05-26 22:20:37 -070023standard input to the interpreter or specified as a command line argument to the
24interpreter) is a code block. A script command (a command specified on the
25interpreter command line with the '**-c**' option) is a code block. The string
26argument passed to the built-in functions :func:`eval` and :func:`exec` is a
27code block.
Georg Brandl116aa622007-08-15 14:28:22 +000028
29.. index:: pair: execution; frame
30
31A code block is executed in an :dfn:`execution frame`. A frame contains some
32administrative information (used for debugging) and determines where and how
33execution continues after the code block's execution has completed.
34
Nick Coghlan91e561a2015-08-05 23:07:24 +100035.. _naming:
Georg Brandl116aa622007-08-15 14:28:22 +000036
Nick Coghlan91e561a2015-08-05 23:07:24 +100037Naming and binding
38==================
Georg Brandl116aa622007-08-15 14:28:22 +000039
40.. index::
Nick Coghlan91e561a2015-08-05 23:07:24 +100041 single: namespace
42 single: scope
Georg Brandl116aa622007-08-15 14:28:22 +000043
Nick Coghlan91e561a2015-08-05 23:07:24 +100044.. _bind_names:
45
46Binding of names
47----------------
48
49.. index::
50 single: name
51 pair: binding; name
52
53:dfn:`Names` refer to objects. Names are introduced by name binding operations.
Georg Brandl116aa622007-08-15 14:28:22 +000054
55.. index:: statement: from
56
57The following constructs bind names: formal parameters to functions,
58:keyword:`import` statements, class and function definitions (these bind the
59class or function name in the defining block), and targets that are identifiers
Georg Brandl7f157862009-03-15 21:57:20 +000060if occurring in an assignment, :keyword:`for` loop header, or after
Georg Brandl682d7e02010-10-06 10:26:05 +000061:keyword:`as` in a :keyword:`with` statement or :keyword:`except` clause.
Georg Brandl7f157862009-03-15 21:57:20 +000062The :keyword:`import` statement
63of the form ``from ... import *`` binds all names defined in the imported
Georg Brandl116aa622007-08-15 14:28:22 +000064module, except those beginning with an underscore. This form may only be used
65at the module level.
66
67A target occurring in a :keyword:`del` statement is also considered bound for
Benjamin Petersonc6696d22011-02-26 21:32:16 +000068this purpose (though the actual semantics are to unbind the name).
Georg Brandl116aa622007-08-15 14:28:22 +000069
70Each assignment or import statement occurs within a block defined by a class or
71function definition or at the module level (the top-level code block).
72
Nick Coghlan91e561a2015-08-05 23:07:24 +100073.. index:: pair: free; variable
74
75If a name is bound in a block, it is a local variable of that block, unless
76declared as :keyword:`nonlocal` or :keyword:`global`. If a name is bound at
77the module level, it is a global variable. (The variables of the module code
78block are local and global.) If a variable is used in a code block but not
79defined there, it is a :dfn:`free variable`.
80
81Each occurrence of a name in the program text refers to the :dfn:`binding` of
82that name established by the following name resolution rules.
83
84.. _resolve_names:
85
86Resolution of names
87-------------------
88
89.. index:: scope
90
91A :dfn:`scope` defines the visibility of a name within a block. If a local
92variable is defined in a block, its scope includes that block. If the
93definition occurs in a function block, the scope extends to any blocks contained
94within the defining one, unless a contained block introduces a different binding
95for the name.
96
97.. index:: single: environment
98
99When a name is used in a code block, it is resolved using the nearest enclosing
100scope. The set of all such scopes visible to a code block is called the block's
101:dfn:`environment`.
102
103.. index::
104 single: NameError (built-in exception)
105 single: UnboundLocalError
106
107When a name is not found at all, a :exc:`NameError` exception is raised.
108If the current scope is a function scope, and the name refers to a local
109variable that has not yet been bound to a value at the point where the name is
110used, an :exc:`UnboundLocalError` exception is raised.
111:exc:`UnboundLocalError` is a subclass of :exc:`NameError`.
112
Georg Brandl116aa622007-08-15 14:28:22 +0000113If a name binding operation occurs anywhere within a code block, all uses of the
114name within the block are treated as references to the current block. This can
Georg Brandl96593ed2007-09-07 14:15:41 +0000115lead to errors when a name is used within a block before it is bound. This rule
Georg Brandl116aa622007-08-15 14:28:22 +0000116is subtle. Python lacks declarations and allows name binding operations to
117occur anywhere within a code block. The local variables of a code block can be
118determined by scanning the entire text of the block for name binding operations.
119
Georg Brandl96593ed2007-09-07 14:15:41 +0000120If the :keyword:`global` statement occurs within a block, all uses of the name
121specified in the statement refer to the binding of that name in the top-level
122namespace. Names are resolved in the top-level namespace by searching the
123global namespace, i.e. the namespace of the module containing the code block,
Georg Brandl22b34312009-07-26 14:54:51 +0000124and the builtins namespace, the namespace of the module :mod:`builtins`. The
Georg Brandla4c8c472014-10-31 10:38:49 +0100125global namespace is searched first. If the name is not found there, the
126builtins namespace is searched. The :keyword:`global` statement must precede
127all uses of the name.
Georg Brandl96593ed2007-09-07 14:15:41 +0000128
Nick Coghlan91e561a2015-08-05 23:07:24 +1000129The :keyword:`global` statement has the same scope as a name binding operation
130in the same block. If the nearest enclosing scope for a free variable contains
131a global statement, the free variable is treated as a global.
132
133.. XXX say more about "nonlocal" semantics here
134
135The :keyword:`nonlocal` statement causes corresponding names to refer
136to previously bound variables in the nearest enclosing function scope.
137:exc:`SyntaxError` is raised at compile time if the given name does not
138exist in any enclosing function scope.
139
140.. index:: module: __main__
141
142The namespace for a module is automatically created the first time a module is
143imported. The main module for a script is always called :mod:`__main__`.
144
145Class definition blocks and arguments to :func:`exec` and :func:`eval` are
146special in the context of name resolution.
147A class definition is an executable statement that may use and define names.
148These references follow the normal rules for name resolution with an exception
149that unbound local variables are looked up in the global namespace.
150The namespace of the class definition becomes the attribute dictionary of
151the class. The scope of names defined in a class block is limited to the
152class block; it does not extend to the code blocks of methods -- this includes
153comprehensions and generator expressions since they are implemented using a
154function scope. This means that the following will fail::
155
156 class A:
157 a = 42
158 b = list(a + i for i in range(10))
159
160.. _restrict_exec:
161
162Builtins and restricted execution
163---------------------------------
Georg Brandl116aa622007-08-15 14:28:22 +0000164
165.. index:: pair: restricted; execution
166
Georg Brandl93dc9eb2010-03-14 10:56:14 +0000167The builtins namespace associated with the execution of a code block is actually
Georg Brandl116aa622007-08-15 14:28:22 +0000168found by looking up the name ``__builtins__`` in its global namespace; this
169should be a dictionary or a module (in the latter case the module's dictionary
170is used). By default, when in the :mod:`__main__` module, ``__builtins__`` is
Georg Brandl1a3284e2007-12-02 09:40:06 +0000171the built-in module :mod:`builtins`; when in any other module,
172``__builtins__`` is an alias for the dictionary of the :mod:`builtins` module
Georg Brandl116aa622007-08-15 14:28:22 +0000173itself. ``__builtins__`` can be set to a user-created dictionary to create a
174weak form of restricted execution.
175
Georg Brandl495f7b52009-10-27 15:28:25 +0000176.. impl-detail::
Georg Brandl116aa622007-08-15 14:28:22 +0000177
178 Users should not touch ``__builtins__``; it is strictly an implementation
Georg Brandl93dc9eb2010-03-14 10:56:14 +0000179 detail. Users wanting to override values in the builtins namespace should
Georg Brandl1a3284e2007-12-02 09:40:06 +0000180 :keyword:`import` the :mod:`builtins` module and modify its
Georg Brandl116aa622007-08-15 14:28:22 +0000181 attributes appropriately.
182
Georg Brandl116aa622007-08-15 14:28:22 +0000183.. _dynamic-features:
184
185Interaction with dynamic features
186---------------------------------
187
Nick Coghlan91e561a2015-08-05 23:07:24 +1000188Name resolution of free variables occurs at runtime, not at compile time.
189This means that the following code will print 42::
190
191 i = 10
192 def f():
193 print(i)
194 i = 42
195 f()
196
Georg Brandl116aa622007-08-15 14:28:22 +0000197There are several cases where Python statements are illegal when used in
198conjunction with nested scopes that contain free variables.
199
200If a variable is referenced in an enclosing scope, it is illegal to delete the
201name. An error will be reported at compile time.
202
Georg Brandl96593ed2007-09-07 14:15:41 +0000203.. XXX from * also invalid with relative imports (at least currently)
204
205The :func:`eval` and :func:`exec` functions do not have access to the full
206environment for resolving names. Names may be resolved in the local and global
207namespaces of the caller. Free variables are not resolved in the nearest
208enclosing namespace, but in the global namespace. [#]_ The :func:`exec` and
209:func:`eval` functions have optional arguments to override the global and local
210namespace. If only one namespace is specified, it is used for both.
Georg Brandl116aa622007-08-15 14:28:22 +0000211
212
213.. _exceptions:
214
215Exceptions
216==========
217
218.. index:: single: exception
219
220.. index::
221 single: raise an exception
222 single: handle an exception
223 single: exception handler
224 single: errors
225 single: error handling
226
227Exceptions are a means of breaking out of the normal flow of control of a code
228block in order to handle errors or other exceptional conditions. An exception
229is *raised* at the point where the error is detected; it may be *handled* by the
230surrounding code block or by any code block that directly or indirectly invoked
231the code block where the error occurred.
232
233The Python interpreter raises an exception when it detects a run-time error
234(such as division by zero). A Python program can also explicitly raise an
235exception with the :keyword:`raise` statement. Exception handlers are specified
Alexandre Vassalottieca20b62008-05-16 02:54:33 +0000236with the :keyword:`try` ... :keyword:`except` statement. The :keyword:`finally`
237clause of such a statement can be used to specify cleanup code which does not
238handle the exception, but is executed whether an exception occurred or not in
239the preceding code.
Georg Brandl116aa622007-08-15 14:28:22 +0000240
241.. index:: single: termination model
242
243Python uses the "termination" model of error handling: an exception handler can
244find out what happened and continue execution at an outer level, but it cannot
245repair the cause of the error and retry the failing operation (except by
246re-entering the offending piece of code from the top).
247
248.. index:: single: SystemExit (built-in exception)
249
250When an exception is not handled at all, the interpreter terminates execution of
251the program, or returns to its interactive main loop. In either case, it prints
Georg Brandl96593ed2007-09-07 14:15:41 +0000252a stack backtrace, except when the exception is :exc:`SystemExit`.
Georg Brandl116aa622007-08-15 14:28:22 +0000253
254Exceptions are identified by class instances. The :keyword:`except` clause is
255selected depending on the class of the instance: it must reference the class of
256the instance or a base class thereof. The instance can be received by the
257handler and can carry additional information about the exceptional condition.
258
Georg Brandle720c0a2009-04-27 16:20:50 +0000259.. note::
Georg Brandl116aa622007-08-15 14:28:22 +0000260
Georg Brandl96593ed2007-09-07 14:15:41 +0000261 Exception messages are not part of the Python API. Their contents may change
262 from one version of Python to the next without warning and should not be
Georg Brandl116aa622007-08-15 14:28:22 +0000263 relied on by code which will run under multiple versions of the interpreter.
264
265See also the description of the :keyword:`try` statement in section :ref:`try`
266and :keyword:`raise` statement in section :ref:`raise`.
267
Georg Brandl1aea30a2008-07-19 15:51:07 +0000268
Georg Brandl116aa622007-08-15 14:28:22 +0000269.. rubric:: Footnotes
270
Georg Brandl96593ed2007-09-07 14:15:41 +0000271.. [#] This limitation occurs because the code that is executed by these operations
272 is not available at the time the module is compiled.