blob: 86c1a0d7f5c144ff8ae12984f50f12377d55c825 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +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:
Guido van Rossum0616b792007-08-31 03:25:11 +000033 print(b, end=' ')
Georg Brandl116aa622007-08-15 14:28:22 +000034 a, b = b, a+b
Georg Brandl11e18b02008-08-05 09:04:16 +000035 print()
Georg Brandl116aa622007-08-15 14:28:22 +000036
37 def fib2(n): # return Fibonacci series up to n
38 result = []
39 a, b = 0, 1
40 while b < n:
41 result.append(b)
42 a, b = b, a+b
43 return result
44
45Now enter the Python interpreter and import this module with the following
46command::
47
48 >>> import fibo
49
50This does not enter the names of the functions defined in ``fibo`` directly in
51the current symbol table; it only enters the module name ``fibo`` there. Using
52the module name you can access the functions::
53
54 >>> fibo.fib(1000)
55 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987
56 >>> fibo.fib2(100)
57 [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
58 >>> fibo.__name__
59 'fibo'
60
61If you intend to use a function often you can assign it to a local name::
62
63 >>> fib = fibo.fib
64 >>> fib(500)
65 1 1 2 3 5 8 13 21 34 55 89 144 233 377
66
67
68.. _tut-moremodules:
69
70More on Modules
71===============
72
73A module can contain executable statements as well as function definitions.
74These statements are intended to initialize the module. They are executed only
75the *first* time the module is imported somewhere. [#]_
76
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 (``_``).
Georg Brandl48310cd2009-01-03 21:18:54 +0000106In most cases Python programmers do not use this facility since it introduces
107an unknown set of names into the interpreter, possibly hiding some things
Guido van Rossum0616b792007-08-31 03:25:11 +0000108you have already defined.
Georg Brandl116aa622007-08-15 14:28:22 +0000109
Benjamin Peterson4ac9ce42009-10-04 14:49:41 +0000110Note that in general the practice of importing ``*`` from a module or package is
111frowned upon, since it often causes poorly readable code. However, it is okay to
112use it to save typing in interactive sessions.
113
Alexandre Vassalotti6461e102008-05-15 22:09:29 +0000114.. note::
115
116 For efficiency reasons, each module is only imported once per interpreter
117 session. Therefore, if you change your modules, you must restart the
118 interpreter -- or, if it's just one module you want to test interactively,
Georg Brandlabffe712008-12-15 08:28:37 +0000119 use :func:`imp.reload`, e.g. ``import imp; imp.reload(modulename)``.
Alexandre Vassalotti6461e102008-05-15 22:09:29 +0000120
Georg Brandl116aa622007-08-15 14:28:22 +0000121
122.. _tut-modulesasscripts:
123
124Executing modules as scripts
125----------------------------
126
127When you run a Python module with ::
128
129 python fibo.py <arguments>
130
131the code in the module will be executed, just as if you imported it, but with
132the ``__name__`` set to ``"__main__"``. That means that by adding this code at
133the end of your module::
134
135 if __name__ == "__main__":
136 import sys
137 fib(int(sys.argv[1]))
138
139you can make the file usable as a script as well as an importable module,
140because the code that parses the command line only runs if the module is
141executed as the "main" file::
142
143 $ python fibo.py 50
144 1 1 2 3 5 8 13 21 34
145
146If the module is imported, the code is not run::
147
148 >>> import fibo
149 >>>
150
151This is often used either to provide a convenient user interface to a module, or
152for testing purposes (running the module as a script executes a test suite).
153
154
155.. _tut-searchpath:
156
157The Module Search Path
158----------------------
159
160.. index:: triple: module; search; path
161
Sandro Tosif0229aa2012-01-19 11:29:26 +0100162When a module named :mod:`spam` is imported, the interpreter first searches for
163a built-in module with that name. If not found, it then searches for a file
164named :file:`spam.py` in a list of directories given by the variable
165:data:`sys.path`. :data:`sys.path` is initialized from these locations:
Georg Brandl116aa622007-08-15 14:28:22 +0000166
Sandro Tosif0229aa2012-01-19 11:29:26 +0100167* the directory containing the input script (or the current directory).
168* :envvar:`PYTHONPATH` (a list of directory names, with the same syntax as the
169 shell variable :envvar:`PATH`).
170* the installation-dependent default.
171
172After initialization, Python programs can modify :data:`sys.path`. The
173directory containing the script being run is placed at the beginning of the
174search path, ahead of the standard library path. This means that scripts in that
175directory will be loaded instead of modules of the same name in the library
176directory. This is an error unless the replacement is intended. See section
177:ref:`tut-standardmodules` for more information.
Georg Brandl116aa622007-08-15 14:28:22 +0000178
Guido van Rossum0616b792007-08-31 03:25:11 +0000179.. %
180 Do we need stuff on zip files etc. ? DUBOIS
Georg Brandl116aa622007-08-15 14:28:22 +0000181
182"Compiled" Python files
183-----------------------
184
185As an important speed-up of the start-up time for short programs that use a lot
186of standard modules, if a file called :file:`spam.pyc` exists in the directory
187where :file:`spam.py` is found, this is assumed to contain an
188already-"byte-compiled" version of the module :mod:`spam`. The modification time
189of the version of :file:`spam.py` used to create :file:`spam.pyc` is recorded in
190:file:`spam.pyc`, and the :file:`.pyc` file is ignored if these don't match.
191
192Normally, you don't need to do anything to create the :file:`spam.pyc` file.
193Whenever :file:`spam.py` is successfully compiled, an attempt is made to write
194the compiled version to :file:`spam.pyc`. It is not an error if this attempt
195fails; if for any reason the file is not written completely, the resulting
196:file:`spam.pyc` file will be recognized as invalid and thus ignored later. The
197contents of the :file:`spam.pyc` file are platform independent, so a Python
198module directory can be shared by machines of different architectures.
199
200Some tips for experts:
201
202* When the Python interpreter is invoked with the :option:`-O` flag, optimized
203 code is generated and stored in :file:`.pyo` files. The optimizer currently
204 doesn't help much; it only removes :keyword:`assert` statements. When
Georg Brandl9afde1c2007-11-01 20:32:30 +0000205 :option:`-O` is used, *all* :term:`bytecode` is optimized; ``.pyc`` files are
206 ignored and ``.py`` files are compiled to optimized bytecode.
Georg Brandl116aa622007-08-15 14:28:22 +0000207
208* Passing two :option:`-O` flags to the Python interpreter (:option:`-OO`) will
209 cause the bytecode compiler to perform optimizations that could in some rare
210 cases result in malfunctioning programs. Currently only ``__doc__`` strings are
211 removed from the bytecode, resulting in more compact :file:`.pyo` files. Since
212 some programs may rely on having these available, you should only use this
213 option if you know what you're doing.
214
215* A program doesn't run any faster when it is read from a :file:`.pyc` or
216 :file:`.pyo` file than when it is read from a :file:`.py` file; the only thing
217 that's faster about :file:`.pyc` or :file:`.pyo` files is the speed with which
218 they are loaded.
219
220* When a script is run by giving its name on the command line, the bytecode for
221 the script is never written to a :file:`.pyc` or :file:`.pyo` file. Thus, the
222 startup time of a script may be reduced by moving most of its code to a module
223 and having a small bootstrap script that imports that module. It is also
224 possible to name a :file:`.pyc` or :file:`.pyo` file directly on the command
225 line.
226
227* It is possible to have a file called :file:`spam.pyc` (or :file:`spam.pyo`
228 when :option:`-O` is used) without a file :file:`spam.py` for the same module.
229 This can be used to distribute a library of Python code in a form that is
230 moderately hard to reverse engineer.
231
232 .. index:: module: compileall
233
234* The module :mod:`compileall` can create :file:`.pyc` files (or :file:`.pyo`
235 files when :option:`-O` is used) for all modules in a directory.
236
Georg Brandl116aa622007-08-15 14:28:22 +0000237
238.. _tut-standardmodules:
239
240Standard Modules
241================
242
243.. index:: module: sys
244
245Python comes with a library of standard modules, described in a separate
246document, the Python Library Reference ("Library Reference" hereafter). Some
247modules are built into the interpreter; these provide access to operations that
248are not part of the core of the language but are nevertheless built in, either
249for efficiency or to provide access to operating system primitives such as
250system calls. The set of such modules is a configuration option which also
Sandro Tosida9df922012-08-04 19:42:24 +0200251depends on the underlying platform. For example, the :mod:`winreg` module is only
Georg Brandl116aa622007-08-15 14:28:22 +0000252provided on Windows systems. One particular module deserves some attention:
253:mod:`sys`, which is built into every Python interpreter. The variables
254``sys.ps1`` and ``sys.ps2`` define the strings used as primary and secondary
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000255prompts::
Georg Brandl116aa622007-08-15 14:28:22 +0000256
257 >>> import sys
258 >>> sys.ps1
259 '>>> '
260 >>> sys.ps2
261 '... '
262 >>> sys.ps1 = 'C> '
Guido van Rossum0616b792007-08-31 03:25:11 +0000263 C> print('Yuck!')
Georg Brandl116aa622007-08-15 14:28:22 +0000264 Yuck!
265 C>
266
267
268These two variables are only defined if the interpreter is in interactive mode.
269
270The variable ``sys.path`` is a list of strings that determines the interpreter's
271search path for modules. It is initialized to a default path taken from the
272environment variable :envvar:`PYTHONPATH`, or from a built-in default if
273:envvar:`PYTHONPATH` is not set. You can modify it using standard list
274operations::
275
276 >>> import sys
277 >>> sys.path.append('/ufs/guido/lib/python')
278
279
280.. _tut-dir:
281
282The :func:`dir` Function
283========================
284
285The built-in function :func:`dir` is used to find out which names a module
286defines. It returns a sorted list of strings::
287
288 >>> import fibo, sys
289 >>> dir(fibo)
290 ['__name__', 'fib', 'fib2']
Ezio Melotti52e85502012-11-17 12:50:14 +0200291 >>> dir(sys) # doctest: +NORMALIZE_WHITESPACE
292 ['__displayhook__', '__doc__', '__excepthook__', '__name__', '__package__',
293 '__stderr__', '__stdin__', '__stdout__', '_clear_type_cache',
294 '_current_frames', '_getframe', '_mercurial', '_xoptions', 'abiflags',
295 'api_version', 'argv', 'builtin_module_names', 'byteorder', 'call_tracing',
296 'callstats', 'copyright', 'displayhook', 'dont_write_bytecode', 'exc_info',
297 'excepthook', 'exec_prefix', 'executable', 'exit', 'flags', 'float_info',
298 'float_repr_style', 'getcheckinterval', 'getdefaultencoding',
299 'getdlopenflags', 'getfilesystemencoding', 'getobjects', 'getprofile',
300 'getrecursionlimit', 'getrefcount', 'getsizeof', 'getswitchinterval',
301 'gettotalrefcount', 'gettrace', 'hash_info', 'hexversion', 'int_info',
302 'intern', 'maxsize', 'maxunicode', 'meta_path', 'modules', 'path',
303 'path_hooks', 'path_importer_cache', 'platform', 'prefix', 'ps1',
304 'setcheckinterval', 'setdlopenflags', 'setprofile', 'setrecursionlimit',
305 'setswitchinterval', 'settrace', 'stderr', 'stdin', 'stdout', 'subversion',
Georg Brandl116aa622007-08-15 14:28:22 +0000306 'version', 'version_info', 'warnoptions']
307
308Without arguments, :func:`dir` lists the names you have defined currently::
309
310 >>> a = [1, 2, 3, 4, 5]
311 >>> import fibo
312 >>> fib = fibo.fib
313 >>> dir()
Ezio Melotti52e85502012-11-17 12:50:14 +0200314 ['__builtins__', '__name__', 'a', 'fib', 'fibo', 'sys']
Georg Brandl116aa622007-08-15 14:28:22 +0000315
316Note that it lists all types of names: variables, modules, functions, etc.
317
Georg Brandl1a3284e2007-12-02 09:40:06 +0000318.. index:: module: builtins
Georg Brandl116aa622007-08-15 14:28:22 +0000319
320:func:`dir` does not list the names of built-in functions and variables. If you
321want a list of those, they are defined in the standard module
Georg Brandl1a3284e2007-12-02 09:40:06 +0000322:mod:`builtins`::
Georg Brandl116aa622007-08-15 14:28:22 +0000323
Georg Brandl1a3284e2007-12-02 09:40:06 +0000324 >>> import builtins
Ezio Melotti52e85502012-11-17 12:50:14 +0200325 >>> dir(builtins) # doctest: +NORMALIZE_WHITESPACE
326 ['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException',
327 'BufferError', 'BytesWarning', 'DeprecationWarning', 'EOFError',
328 'Ellipsis', 'EnvironmentError', 'Exception', 'False', 'FloatingPointError',
329 'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError',
330 'ImportWarning', 'IndentationError', 'IndexError', 'KeyError',
331 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'NameError', 'None',
332 'NotImplemented', 'NotImplementedError', 'OSError', 'OverflowError',
333 'PendingDeprecationWarning', 'ReferenceError', 'ResourceWarning',
334 'RuntimeError', 'RuntimeWarning', 'StopIteration', 'SyntaxError',
335 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', 'True',
336 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError',
337 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError',
338 'UnicodeWarning', 'UserWarning', 'ValueError', 'Warning',
339 'ZeroDivisionError', '_', '__build_class__', '__debug__', '__doc__',
340 '__import__', '__name__', '__package__', 'abs', 'all', 'any', 'ascii',
341 'bin', 'bool', 'bytearray', 'bytes', 'callable', 'chr', 'classmethod',
342 'compile', 'complex', 'copyright', 'credits', 'delattr', 'dict', 'dir',
343 'divmod', 'enumerate', 'eval', 'exec', 'exit', 'filter', 'float', 'format',
344 'frozenset', 'getattr', 'globals', 'hasattr', 'hash', 'help', 'hex', 'id',
345 'input', 'int', 'isinstance', 'issubclass', 'iter', 'len', 'license',
346 'list', 'locals', 'map', 'max', 'memoryview', 'min', 'next', 'object',
347 'oct', 'open', 'ord', 'pow', 'print', 'property', 'quit', 'range', 'repr',
348 'reversed', 'round', 'set', 'setattr', 'slice', 'sorted', 'staticmethod',
349 'str', 'sum', 'super', 'tuple', 'type', 'vars', 'zip']
Georg Brandl116aa622007-08-15 14:28:22 +0000350
351.. _tut-packages:
352
353Packages
354========
355
356Packages are a way of structuring Python's module namespace by using "dotted
357module names". For example, the module name :mod:`A.B` designates a submodule
358named ``B`` in a package named ``A``. Just like the use of modules saves the
359authors of different modules from having to worry about each other's global
360variable names, the use of dotted module names saves the authors of multi-module
361packages like NumPy or the Python Imaging Library from having to worry about
362each other's module names.
363
364Suppose you want to design a collection of modules (a "package") for the uniform
365handling of sound files and sound data. There are many different sound file
366formats (usually recognized by their extension, for example: :file:`.wav`,
367:file:`.aiff`, :file:`.au`), so you may need to create and maintain a growing
368collection of modules for the conversion between the various file formats.
369There are also many different operations you might want to perform on sound data
370(such as mixing, adding echo, applying an equalizer function, creating an
371artificial stereo effect), so in addition you will be writing a never-ending
372stream of modules to perform these operations. Here's a possible structure for
373your package (expressed in terms of a hierarchical filesystem)::
374
375 sound/ Top-level package
376 __init__.py Initialize the sound package
377 formats/ Subpackage for file format conversions
378 __init__.py
379 wavread.py
380 wavwrite.py
381 aiffread.py
382 aiffwrite.py
383 auread.py
384 auwrite.py
385 ...
386 effects/ Subpackage for sound effects
387 __init__.py
388 echo.py
389 surround.py
390 reverse.py
391 ...
392 filters/ Subpackage for filters
393 __init__.py
394 equalizer.py
395 vocoder.py
396 karaoke.py
397 ...
398
399When importing the package, Python searches through the directories on
400``sys.path`` looking for the package subdirectory.
401
402The :file:`__init__.py` files are required to make Python treat the directories
403as containing packages; this is done to prevent directories with a common name,
404such as ``string``, from unintentionally hiding valid modules that occur later
405on the module search path. In the simplest case, :file:`__init__.py` can just be
406an empty file, but it can also execute initialization code for the package or
407set the ``__all__`` variable, described later.
408
409Users of the package can import individual modules from the package, for
410example::
411
412 import sound.effects.echo
413
414This loads the submodule :mod:`sound.effects.echo`. It must be referenced with
415its full name. ::
416
417 sound.effects.echo.echofilter(input, output, delay=0.7, atten=4)
418
419An alternative way of importing the submodule is::
420
421 from sound.effects import echo
422
423This also loads the submodule :mod:`echo`, and makes it available without its
424package prefix, so it can be used as follows::
425
426 echo.echofilter(input, output, delay=0.7, atten=4)
427
428Yet another variation is to import the desired function or variable directly::
429
430 from sound.effects.echo import echofilter
431
432Again, this loads the submodule :mod:`echo`, but this makes its function
433:func:`echofilter` directly available::
434
435 echofilter(input, output, delay=0.7, atten=4)
436
437Note that when using ``from package import item``, the item can be either a
438submodule (or subpackage) of the package, or some other name defined in the
439package, like a function, class or variable. The ``import`` statement first
440tests whether the item is defined in the package; if not, it assumes it is a
441module and attempts to load it. If it fails to find it, an :exc:`ImportError`
442exception is raised.
443
444Contrarily, when using syntax like ``import item.subitem.subsubitem``, each item
445except for the last must be a package; the last item can be a module or a
446package but can't be a class or function or variable defined in the previous
447item.
448
449
450.. _tut-pkg-import-star:
451
452Importing \* From a Package
453---------------------------
454
455.. index:: single: __all__
456
457Now what happens when the user writes ``from sound.effects import *``? Ideally,
458one would hope that this somehow goes out to the filesystem, finds which
Benjamin Peterson4ac9ce42009-10-04 14:49:41 +0000459submodules are present in the package, and imports them all. This could take a
460long time and importing sub-modules might have unwanted side-effects that should
461only happen when the sub-module is explicitly imported.
Georg Brandl116aa622007-08-15 14:28:22 +0000462
Georg Brandl116aa622007-08-15 14:28:22 +0000463The only solution is for the package author to provide an explicit index of the
Alexandre Vassalotti6d3dfc32009-07-29 19:54:39 +0000464package. The :keyword:`import` statement uses the following convention: if a package's
Georg Brandl116aa622007-08-15 14:28:22 +0000465:file:`__init__.py` code defines a list named ``__all__``, it is taken to be the
466list of module names that should be imported when ``from package import *`` is
467encountered. It is up to the package author to keep this list up-to-date when a
468new version of the package is released. Package authors may also decide not to
469support it, if they don't see a use for importing \* from their package. For
470example, the file :file:`sounds/effects/__init__.py` could contain the following
471code::
472
473 __all__ = ["echo", "surround", "reverse"]
474
475This would mean that ``from sound.effects import *`` would import the three
476named submodules of the :mod:`sound` package.
477
478If ``__all__`` is not defined, the statement ``from sound.effects import *``
479does *not* import all submodules from the package :mod:`sound.effects` into the
480current namespace; it only ensures that the package :mod:`sound.effects` has
481been imported (possibly running any initialization code in :file:`__init__.py`)
482and then imports whatever names are defined in the package. This includes any
483names defined (and submodules explicitly loaded) by :file:`__init__.py`. It
484also includes any submodules of the package that were explicitly loaded by
Alexandre Vassalotti6d3dfc32009-07-29 19:54:39 +0000485previous :keyword:`import` statements. Consider this code::
Georg Brandl116aa622007-08-15 14:28:22 +0000486
487 import sound.effects.echo
488 import sound.effects.surround
489 from sound.effects import *
490
Alexandre Vassalotti6d3dfc32009-07-29 19:54:39 +0000491In this example, the :mod:`echo` and :mod:`surround` modules are imported in the
492current namespace because they are defined in the :mod:`sound.effects` package
493when the ``from...import`` statement is executed. (This also works when
494``__all__`` is defined.)
Georg Brandl116aa622007-08-15 14:28:22 +0000495
Benjamin Peterson4ac9ce42009-10-04 14:49:41 +0000496Although certain modules are designed to export only names that follow certain
497patterns when you use ``import *``, it is still considered bad practise in
498production code.
Georg Brandl116aa622007-08-15 14:28:22 +0000499
500Remember, there is nothing wrong with using ``from Package import
501specific_submodule``! In fact, this is the recommended notation unless the
502importing module needs to use submodules with the same name from different
503packages.
504
505
506Intra-package References
507------------------------
508
Georg Brandl116aa622007-08-15 14:28:22 +0000509When packages are structured into subpackages (as with the :mod:`sound` package
510in the example), you can use absolute imports to refer to submodules of siblings
511packages. For example, if the module :mod:`sound.filters.vocoder` needs to use
512the :mod:`echo` module in the :mod:`sound.effects` package, it can use ``from
513sound.effects import echo``.
514
Georg Brandle6bcc912008-05-12 18:05:20 +0000515You can also write relative imports, with the ``from module import name`` form
516of import statement. These imports use leading dots to indicate the current and
517parent packages involved in the relative import. From the :mod:`surround`
518module for example, you might use::
Georg Brandl116aa622007-08-15 14:28:22 +0000519
520 from . import echo
521 from .. import formats
522 from ..filters import equalizer
523
Georg Brandle6bcc912008-05-12 18:05:20 +0000524Note that relative imports are based on the name of the current module. Since
525the name of the main module is always ``"__main__"``, modules intended for use
526as the main module of a Python application must always use absolute imports.
Georg Brandl116aa622007-08-15 14:28:22 +0000527
528
529Packages in Multiple Directories
530--------------------------------
531
532Packages support one more special attribute, :attr:`__path__`. This is
533initialized to be a list containing the name of the directory holding the
534package's :file:`__init__.py` before the code in that file is executed. This
535variable can be modified; doing so affects future searches for modules and
536subpackages contained in the package.
537
538While this feature is not often needed, it can be used to extend the set of
539modules found in a package.
540
541
542.. rubric:: Footnotes
543
544.. [#] In fact function definitions are also 'statements' that are 'executed'; the
Alexandre Vassalotti6d3dfc32009-07-29 19:54:39 +0000545 execution of a module-level function enters the function name in the module's
546 global symbol table.
Georg Brandl116aa622007-08-15 14:28:22 +0000547