blob: bcbb761b7857bf589806da638431c79b6dc31745 [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001.. _tut-modules:
2
3*******
4Modules
5*******
6
7If you quit from the Python interpreter and enter it again, the definitions you
8have made (functions and variables) are lost. Therefore, if you want to write a
9somewhat longer program, you are better off using a text editor to prepare the
10input for the interpreter and running it with that file as input instead. This
11is known as creating a *script*. As your program gets longer, you may want to
12split it into several files for easier maintenance. You may also want to use a
13handy function that you've written in several programs without copying its
14definition into each program.
15
16To support this, Python has a way to put definitions in a file and use them in a
17script or in an interactive instance of the interpreter. Such a file is called a
18*module*; definitions from a module can be *imported* into other modules or into
19the *main* module (the collection of variables that you have access to in a
20script executed at the top level and in calculator mode).
21
22A module is a file containing Python definitions and statements. The file name
23is the module name with the suffix :file:`.py` appended. Within a module, the
24module's name (as a string) is available as the value of the global variable
25``__name__``. For instance, use your favorite text editor to create a file
26called :file:`fibo.py` in the current directory with the following contents::
27
28 # Fibonacci numbers module
29
30 def fib(n): # write Fibonacci series up to n
31 a, b = 0, 1
32 while b < n:
33 print b,
34 a, b = b, a+b
35
36 def fib2(n): # return Fibonacci series up to n
37 result = []
38 a, b = 0, 1
39 while b < n:
40 result.append(b)
41 a, b = b, a+b
42 return result
43
44Now enter the Python interpreter and import this module with the following
45command::
46
47 >>> import fibo
48
49This does not enter the names of the functions defined in ``fibo`` directly in
50the current symbol table; it only enters the module name ``fibo`` there. Using
51the module name you can access the functions::
52
53 >>> fibo.fib(1000)
54 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987
55 >>> fibo.fib2(100)
56 [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
57 >>> fibo.__name__
58 'fibo'
59
60If you intend to use a function often you can assign it to a local name::
61
62 >>> fib = fibo.fib
63 >>> fib(500)
64 1 1 2 3 5 8 13 21 34 55 89 144 233 377
65
66
67.. _tut-moremodules:
68
69More on Modules
70===============
71
72A module can contain executable statements as well as function definitions.
73These statements are intended to initialize the module. They are executed only
R David Murray240a2fd2013-04-21 17:14:40 -040074the *first* time the module name is encountered in an import statement. [#]_
75(They are also run if the file is executed as a script.)
Georg Brandl8ec7f652007-08-15 14:28:01 +000076
77Each module has its own private symbol table, which is used as the global symbol
78table by all functions defined in the module. Thus, the author of a module can
79use global variables in the module without worrying about accidental clashes
80with a user's global variables. On the other hand, if you know what you are
81doing you can touch a module's global variables with the same notation used to
82refer to its functions, ``modname.itemname``.
83
84Modules can import other modules. It is customary but not required to place all
85:keyword:`import` statements at the beginning of a module (or script, for that
86matter). The imported module names are placed in the importing module's global
87symbol table.
88
89There is a variant of the :keyword:`import` statement that imports names from a
90module directly into the importing module's symbol table. For example::
91
92 >>> from fibo import fib, fib2
93 >>> fib(500)
94 1 1 2 3 5 8 13 21 34 55 89 144 233 377
95
96This does not introduce the module name from which the imports are taken in the
97local symbol table (so in the example, ``fibo`` is not defined).
98
99There is even a variant to import all names that a module defines::
100
101 >>> from fibo import *
102 >>> fib(500)
103 1 1 2 3 5 8 13 21 34 55 89 144 233 377
104
105This imports all names except those beginning with an underscore (``_``).
106
Michael Foordee2df032009-09-13 17:07:46 +0000107Note that in general the practice of importing ``*`` from a module or package is
108frowned upon, since it often causes poorly readable code. However, it is okay to
109use it to save typing in interactive sessions.
110
Georg Brandl68fd63b2008-05-09 06:39:58 +0000111.. note::
112
113 For efficiency reasons, each module is only imported once per interpreter
114 session. Therefore, if you change your modules, you must restart the
115 interpreter -- or, if it's just one module you want to test interactively,
Georg Brandl605a0c62008-05-11 07:02:17 +0000116 use :func:`reload`, e.g. ``reload(modulename)``.
Georg Brandl68fd63b2008-05-09 06:39:58 +0000117
Georg Brandl8ec7f652007-08-15 14:28:01 +0000118
119.. _tut-modulesasscripts:
120
121Executing modules as scripts
122----------------------------
123
124When you run a Python module with ::
125
126 python fibo.py <arguments>
127
128the code in the module will be executed, just as if you imported it, but with
129the ``__name__`` set to ``"__main__"``. That means that by adding this code at
130the end of your module::
131
132 if __name__ == "__main__":
133 import sys
134 fib(int(sys.argv[1]))
135
136you can make the file usable as a script as well as an importable module,
137because the code that parses the command line only runs if the module is
138executed as the "main" file::
139
140 $ python fibo.py 50
141 1 1 2 3 5 8 13 21 34
142
143If the module is imported, the code is not run::
144
145 >>> import fibo
146 >>>
147
148This is often used either to provide a convenient user interface to a module, or
149for testing purposes (running the module as a script executes a test suite).
150
151
152.. _tut-searchpath:
153
154The Module Search Path
155----------------------
156
157.. index:: triple: module; search; path
158
Sandro Tosid53abd32012-01-19 11:28:15 +0100159When a module named :mod:`spam` is imported, the interpreter first searches for
160a built-in module with that name. If not found, it then searches for a file
161named :file:`spam.py` in a list of directories given by the variable
162:data:`sys.path`. :data:`sys.path` is initialized from these locations:
Georg Brandl8ec7f652007-08-15 14:28:01 +0000163
Sandro Tosid53abd32012-01-19 11:28:15 +0100164* the directory containing the input script (or the current directory).
165* :envvar:`PYTHONPATH` (a list of directory names, with the same syntax as the
166 shell variable :envvar:`PATH`).
167* the installation-dependent default.
168
169After initialization, Python programs can modify :data:`sys.path`. The
170directory containing the script being run is placed at the beginning of the
171search path, ahead of the standard library path. This means that scripts in that
172directory will be loaded instead of modules of the same name in the library
173directory. This is an error unless the replacement is intended. See section
174:ref:`tut-standardmodules` for more information.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000175
176
177"Compiled" Python files
178-----------------------
179
180As an important speed-up of the start-up time for short programs that use a lot
181of standard modules, if a file called :file:`spam.pyc` exists in the directory
182where :file:`spam.py` is found, this is assumed to contain an
183already-"byte-compiled" version of the module :mod:`spam`. The modification time
184of the version of :file:`spam.py` used to create :file:`spam.pyc` is recorded in
185:file:`spam.pyc`, and the :file:`.pyc` file is ignored if these don't match.
186
187Normally, you don't need to do anything to create the :file:`spam.pyc` file.
188Whenever :file:`spam.py` is successfully compiled, an attempt is made to write
189the compiled version to :file:`spam.pyc`. It is not an error if this attempt
190fails; if for any reason the file is not written completely, the resulting
191:file:`spam.pyc` file will be recognized as invalid and thus ignored later. The
192contents of the :file:`spam.pyc` file are platform independent, so a Python
193module directory can be shared by machines of different architectures.
194
195Some tips for experts:
196
197* When the Python interpreter is invoked with the :option:`-O` flag, optimized
198 code is generated and stored in :file:`.pyo` files. The optimizer currently
199 doesn't help much; it only removes :keyword:`assert` statements. When
Georg Brandl5e52db02007-10-21 10:45:46 +0000200 :option:`-O` is used, *all* :term:`bytecode` is optimized; ``.pyc`` files are
201 ignored and ``.py`` files are compiled to optimized bytecode.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000202
203* Passing two :option:`-O` flags to the Python interpreter (:option:`-OO`) will
204 cause the bytecode compiler to perform optimizations that could in some rare
205 cases result in malfunctioning programs. Currently only ``__doc__`` strings are
206 removed from the bytecode, resulting in more compact :file:`.pyo` files. Since
207 some programs may rely on having these available, you should only use this
208 option if you know what you're doing.
209
210* A program doesn't run any faster when it is read from a :file:`.pyc` or
211 :file:`.pyo` file than when it is read from a :file:`.py` file; the only thing
212 that's faster about :file:`.pyc` or :file:`.pyo` files is the speed with which
213 they are loaded.
214
215* When a script is run by giving its name on the command line, the bytecode for
216 the script is never written to a :file:`.pyc` or :file:`.pyo` file. Thus, the
217 startup time of a script may be reduced by moving most of its code to a module
218 and having a small bootstrap script that imports that module. It is also
219 possible to name a :file:`.pyc` or :file:`.pyo` file directly on the command
220 line.
221
222* It is possible to have a file called :file:`spam.pyc` (or :file:`spam.pyo`
223 when :option:`-O` is used) without a file :file:`spam.py` for the same module.
224 This can be used to distribute a library of Python code in a form that is
225 moderately hard to reverse engineer.
226
227 .. index:: module: compileall
228
229* The module :mod:`compileall` can create :file:`.pyc` files (or :file:`.pyo`
230 files when :option:`-O` is used) for all modules in a directory.
231
Georg Brandl8ec7f652007-08-15 14:28:01 +0000232
233.. _tut-standardmodules:
234
235Standard Modules
236================
237
238.. index:: module: sys
239
240Python comes with a library of standard modules, described in a separate
241document, the Python Library Reference ("Library Reference" hereafter). Some
242modules are built into the interpreter; these provide access to operations that
243are not part of the core of the language but are nevertheless built in, either
244for efficiency or to provide access to operating system primitives such as
245system calls. The set of such modules is a configuration option which also
Sandro Tosi7687f3f2012-08-04 19:42:06 +0200246depends on the underlying platform. For example, the :mod:`winreg` module is only
Georg Brandl8ec7f652007-08-15 14:28:01 +0000247provided on Windows systems. One particular module deserves some attention:
248:mod:`sys`, which is built into every Python interpreter. The variables
249``sys.ps1`` and ``sys.ps2`` define the strings used as primary and secondary
Georg Brandlb19be572007-12-29 10:57:00 +0000250prompts::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000251
252 >>> import sys
253 >>> sys.ps1
254 '>>> '
255 >>> sys.ps2
256 '... '
257 >>> sys.ps1 = 'C> '
258 C> print 'Yuck!'
259 Yuck!
260 C>
261
262
263These two variables are only defined if the interpreter is in interactive mode.
264
265The variable ``sys.path`` is a list of strings that determines the interpreter's
266search path for modules. It is initialized to a default path taken from the
267environment variable :envvar:`PYTHONPATH`, or from a built-in default if
268:envvar:`PYTHONPATH` is not set. You can modify it using standard list
269operations::
270
271 >>> import sys
272 >>> sys.path.append('/ufs/guido/lib/python')
273
274
275.. _tut-dir:
276
277The :func:`dir` Function
278========================
279
280The built-in function :func:`dir` is used to find out which names a module
281defines. It returns a sorted list of strings::
282
283 >>> import fibo, sys
284 >>> dir(fibo)
285 ['__name__', 'fib', 'fib2']
Ezio Melotti820f2bd2012-11-17 12:46:40 +0200286 >>> dir(sys) # doctest: +NORMALIZE_WHITESPACE
287 ['__displayhook__', '__doc__', '__excepthook__', '__name__', '__package__',
288 '__stderr__', '__stdin__', '__stdout__', '_clear_type_cache',
289 '_current_frames', '_getframe', '_mercurial', 'api_version', 'argv',
290 'builtin_module_names', 'byteorder', 'call_tracing', 'callstats',
291 'copyright', 'displayhook', 'dont_write_bytecode', 'exc_clear', 'exc_info',
292 'exc_traceback', 'exc_type', 'exc_value', 'excepthook', 'exec_prefix',
293 'executable', 'exit', 'flags', 'float_info', 'float_repr_style',
294 'getcheckinterval', 'getdefaultencoding', 'getdlopenflags',
295 'getfilesystemencoding', 'getobjects', 'getprofile', 'getrecursionlimit',
296 'getrefcount', 'getsizeof', 'gettotalrefcount', 'gettrace', 'hexversion',
297 'long_info', 'maxint', 'maxsize', 'maxunicode', 'meta_path', 'modules',
298 'path', 'path_hooks', 'path_importer_cache', 'platform', 'prefix', 'ps1',
299 'py3kwarning', 'setcheckinterval', 'setdlopenflags', 'setprofile',
300 'setrecursionlimit', 'settrace', 'stderr', 'stdin', 'stdout', 'subversion',
Georg Brandl8ec7f652007-08-15 14:28:01 +0000301 'version', 'version_info', 'warnoptions']
302
303Without arguments, :func:`dir` lists the names you have defined currently::
304
305 >>> a = [1, 2, 3, 4, 5]
306 >>> import fibo
307 >>> fib = fibo.fib
308 >>> dir()
Ezio Melotti820f2bd2012-11-17 12:46:40 +0200309 ['__builtins__', '__name__', '__package__', 'a', 'fib', 'fibo', 'sys']
Georg Brandl8ec7f652007-08-15 14:28:01 +0000310
311Note that it lists all types of names: variables, modules, functions, etc.
312
313.. index:: module: __builtin__
314
315:func:`dir` does not list the names of built-in functions and variables. If you
316want a list of those, they are defined in the standard module
317:mod:`__builtin__`::
318
319 >>> import __builtin__
Ezio Melotti820f2bd2012-11-17 12:46:40 +0200320 >>> dir(__builtin__) # doctest: +NORMALIZE_WHITESPACE
321 ['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException',
322 'BufferError', 'BytesWarning', 'DeprecationWarning', 'EOFError',
323 'Ellipsis', 'EnvironmentError', 'Exception', 'False', 'FloatingPointError',
324 'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError', 'ImportWarning',
Georg Brandl8ec7f652007-08-15 14:28:01 +0000325 'IndentationError', 'IndexError', 'KeyError', 'KeyboardInterrupt',
326 'LookupError', 'MemoryError', 'NameError', 'None', 'NotImplemented',
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000327 'NotImplementedError', 'OSError', 'OverflowError',
Georg Brandl8ec7f652007-08-15 14:28:01 +0000328 'PendingDeprecationWarning', 'ReferenceError', 'RuntimeError',
329 'RuntimeWarning', 'StandardError', 'StopIteration', 'SyntaxError',
330 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', 'True',
331 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError',
332 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError',
Ezio Melotti820f2bd2012-11-17 12:46:40 +0200333 'UnicodeWarning', 'UserWarning', 'ValueError', 'Warning',
Georg Brandl8ec7f652007-08-15 14:28:01 +0000334 'ZeroDivisionError', '_', '__debug__', '__doc__', '__import__',
Ezio Melotti820f2bd2012-11-17 12:46:40 +0200335 '__name__', '__package__', 'abs', 'all', 'any', 'apply', 'basestring',
336 'bin', 'bool', 'buffer', 'bytearray', 'bytes', 'callable', 'chr',
337 'classmethod', 'cmp', 'coerce', 'compile', 'complex', 'copyright',
338 'credits', 'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval',
339 'execfile', 'exit', 'file', 'filter', 'float', 'format', 'frozenset',
340 'getattr', 'globals', 'hasattr', 'hash', 'help', 'hex', 'id', 'input',
341 'int', 'intern', 'isinstance', 'issubclass', 'iter', 'len', 'license',
342 'list', 'locals', 'long', 'map', 'max', 'memoryview', 'min', 'next',
343 'object', 'oct', 'open', 'ord', 'pow', 'print', 'property', 'quit',
344 'range', 'raw_input', 'reduce', 'reload', 'repr', 'reversed', 'round',
345 'set', 'setattr', 'slice', 'sorted', 'staticmethod', 'str', 'sum', 'super',
Georg Brandl8ec7f652007-08-15 14:28:01 +0000346 'tuple', 'type', 'unichr', 'unicode', 'vars', 'xrange', 'zip']
347
348
349.. _tut-packages:
350
351Packages
352========
353
354Packages are a way of structuring Python's module namespace by using "dotted
355module names". For example, the module name :mod:`A.B` designates a submodule
356named ``B`` in a package named ``A``. Just like the use of modules saves the
357authors of different modules from having to worry about each other's global
358variable names, the use of dotted module names saves the authors of multi-module
359packages like NumPy or the Python Imaging Library from having to worry about
360each other's module names.
361
362Suppose you want to design a collection of modules (a "package") for the uniform
363handling of sound files and sound data. There are many different sound file
364formats (usually recognized by their extension, for example: :file:`.wav`,
365:file:`.aiff`, :file:`.au`), so you may need to create and maintain a growing
366collection of modules for the conversion between the various file formats.
367There are also many different operations you might want to perform on sound data
368(such as mixing, adding echo, applying an equalizer function, creating an
369artificial stereo effect), so in addition you will be writing a never-ending
370stream of modules to perform these operations. Here's a possible structure for
371your package (expressed in terms of a hierarchical filesystem)::
372
373 sound/ Top-level package
374 __init__.py Initialize the sound package
375 formats/ Subpackage for file format conversions
376 __init__.py
377 wavread.py
378 wavwrite.py
379 aiffread.py
380 aiffwrite.py
381 auread.py
382 auwrite.py
383 ...
384 effects/ Subpackage for sound effects
385 __init__.py
386 echo.py
387 surround.py
388 reverse.py
389 ...
390 filters/ Subpackage for filters
391 __init__.py
392 equalizer.py
393 vocoder.py
394 karaoke.py
395 ...
396
397When importing the package, Python searches through the directories on
398``sys.path`` looking for the package subdirectory.
399
400The :file:`__init__.py` files are required to make Python treat the directories
401as containing packages; this is done to prevent directories with a common name,
402such as ``string``, from unintentionally hiding valid modules that occur later
403on the module search path. In the simplest case, :file:`__init__.py` can just be
404an empty file, but it can also execute initialization code for the package or
405set the ``__all__`` variable, described later.
406
407Users of the package can import individual modules from the package, for
408example::
409
410 import sound.effects.echo
411
412This loads the submodule :mod:`sound.effects.echo`. It must be referenced with
413its full name. ::
414
415 sound.effects.echo.echofilter(input, output, delay=0.7, atten=4)
416
417An alternative way of importing the submodule is::
418
419 from sound.effects import echo
420
421This also loads the submodule :mod:`echo`, and makes it available without its
422package prefix, so it can be used as follows::
423
424 echo.echofilter(input, output, delay=0.7, atten=4)
425
426Yet another variation is to import the desired function or variable directly::
427
428 from sound.effects.echo import echofilter
429
430Again, this loads the submodule :mod:`echo`, but this makes its function
431:func:`echofilter` directly available::
432
433 echofilter(input, output, delay=0.7, atten=4)
434
435Note that when using ``from package import item``, the item can be either a
436submodule (or subpackage) of the package, or some other name defined in the
437package, like a function, class or variable. The ``import`` statement first
438tests whether the item is defined in the package; if not, it assumes it is a
439module and attempts to load it. If it fails to find it, an :exc:`ImportError`
440exception is raised.
441
442Contrarily, when using syntax like ``import item.subitem.subsubitem``, each item
443except for the last must be a package; the last item can be a module or a
444package but can't be a class or function or variable defined in the previous
445item.
446
447
448.. _tut-pkg-import-star:
449
450Importing \* From a Package
451---------------------------
452
453.. index:: single: __all__
454
455Now what happens when the user writes ``from sound.effects import *``? Ideally,
456one would hope that this somehow goes out to the filesystem, finds which
Michael Foordee2df032009-09-13 17:07:46 +0000457submodules are present in the package, and imports them all. This could take a
458long time and importing sub-modules might have unwanted side-effects that should
459only happen when the sub-module is explicitly imported.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000460
Georg Brandl8ec7f652007-08-15 14:28:01 +0000461The only solution is for the package author to provide an explicit index of the
Georg Brandlffefd5a2009-07-29 17:07:21 +0000462package. The :keyword:`import` statement uses the following convention: if a package's
Georg Brandl8ec7f652007-08-15 14:28:01 +0000463:file:`__init__.py` code defines a list named ``__all__``, it is taken to be the
464list of module names that should be imported when ``from package import *`` is
465encountered. It is up to the package author to keep this list up-to-date when a
466new version of the package is released. Package authors may also decide not to
467support it, if they don't see a use for importing \* from their package. For
468example, the file :file:`sounds/effects/__init__.py` could contain the following
469code::
470
471 __all__ = ["echo", "surround", "reverse"]
472
473This would mean that ``from sound.effects import *`` would import the three
474named submodules of the :mod:`sound` package.
475
476If ``__all__`` is not defined, the statement ``from sound.effects import *``
477does *not* import all submodules from the package :mod:`sound.effects` into the
478current namespace; it only ensures that the package :mod:`sound.effects` has
479been imported (possibly running any initialization code in :file:`__init__.py`)
480and then imports whatever names are defined in the package. This includes any
481names defined (and submodules explicitly loaded) by :file:`__init__.py`. It
482also includes any submodules of the package that were explicitly loaded by
Georg Brandlffefd5a2009-07-29 17:07:21 +0000483previous :keyword:`import` statements. Consider this code::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000484
485 import sound.effects.echo
486 import sound.effects.surround
487 from sound.effects import *
488
Georg Brandlffefd5a2009-07-29 17:07:21 +0000489In this example, the :mod:`echo` and :mod:`surround` modules are imported in the
490current namespace because they are defined in the :mod:`sound.effects` package
491when the ``from...import`` statement is executed. (This also works when
492``__all__`` is defined.)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000493
Michael Foordee2df032009-09-13 17:07:46 +0000494Although certain modules are designed to export only names that follow certain
495patterns when you use ``import *``, it is still considered bad practise in
496production code.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000497
498Remember, there is nothing wrong with using ``from Package import
499specific_submodule``! In fact, this is the recommended notation unless the
500importing module needs to use submodules with the same name from different
501packages.
502
503
504Intra-package References
505------------------------
506
507The submodules often need to refer to each other. For example, the
508:mod:`surround` module might use the :mod:`echo` module. In fact, such
509references are so common that the :keyword:`import` statement first looks in the
510containing package before looking in the standard module search path. Thus, the
511:mod:`surround` module can simply use ``import echo`` or ``from echo import
512echofilter``. If the imported module is not found in the current package (the
513package of which the current module is a submodule), the :keyword:`import`
514statement looks for a top-level module with the given name.
515
516When packages are structured into subpackages (as with the :mod:`sound` package
517in the example), you can use absolute imports to refer to submodules of siblings
518packages. For example, if the module :mod:`sound.filters.vocoder` needs to use
519the :mod:`echo` module in the :mod:`sound.effects` package, it can use ``from
520sound.effects import echo``.
521
522Starting with Python 2.5, in addition to the implicit relative imports described
523above, you can write explicit relative imports with the ``from module import
524name`` form of import statement. These explicit relative imports use leading
525dots to indicate the current and parent packages involved in the relative
526import. From the :mod:`surround` module for example, you might use::
527
528 from . import echo
529 from .. import formats
530 from ..filters import equalizer
531
532Note that both explicit and implicit relative imports are based on the name of
533the current module. Since the name of the main module is always ``"__main__"``,
534modules intended for use as the main module of a Python application should
535always use absolute imports.
536
537
538Packages in Multiple Directories
539--------------------------------
540
541Packages support one more special attribute, :attr:`__path__`. This is
542initialized to be a list containing the name of the directory holding the
543package's :file:`__init__.py` before the code in that file is executed. This
544variable can be modified; doing so affects future searches for modules and
545subpackages contained in the package.
546
547While this feature is not often needed, it can be used to extend the set of
548modules found in a package.
549
550
551.. rubric:: Footnotes
552
553.. [#] In fact function definitions are also 'statements' that are 'executed'; the
Georg Brandld4c45a92013-04-14 11:47:46 +0200554 execution of a module-level function definition enters the function name in
555 the module's global symbol table.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000556