2007-08-15 11:28:22 -03:00
|
|
|
.. _tut-modules:
|
|
|
|
|
|
|
|
*******
|
|
|
|
Modules
|
|
|
|
*******
|
|
|
|
|
|
|
|
If you quit from the Python interpreter and enter it again, the definitions you
|
|
|
|
have made (functions and variables) are lost. Therefore, if you want to write a
|
|
|
|
somewhat longer program, you are better off using a text editor to prepare the
|
|
|
|
input for the interpreter and running it with that file as input instead. This
|
|
|
|
is known as creating a *script*. As your program gets longer, you may want to
|
|
|
|
split it into several files for easier maintenance. You may also want to use a
|
|
|
|
handy function that you've written in several programs without copying its
|
|
|
|
definition into each program.
|
|
|
|
|
|
|
|
To support this, Python has a way to put definitions in a file and use them in a
|
|
|
|
script or in an interactive instance of the interpreter. Such a file is called a
|
|
|
|
*module*; definitions from a module can be *imported* into other modules or into
|
|
|
|
the *main* module (the collection of variables that you have access to in a
|
|
|
|
script executed at the top level and in calculator mode).
|
|
|
|
|
|
|
|
A module is a file containing Python definitions and statements. The file name
|
|
|
|
is the module name with the suffix :file:`.py` appended. Within a module, the
|
|
|
|
module's name (as a string) is available as the value of the global variable
|
|
|
|
``__name__``. For instance, use your favorite text editor to create a file
|
|
|
|
called :file:`fibo.py` in the current directory with the following contents::
|
|
|
|
|
|
|
|
# Fibonacci numbers module
|
|
|
|
|
|
|
|
def fib(n): # write Fibonacci series up to n
|
|
|
|
a, b = 0, 1
|
|
|
|
while b < n:
|
2007-08-31 00:25:11 -03:00
|
|
|
print(b, end=' ')
|
2007-08-15 11:28:22 -03:00
|
|
|
a, b = b, a+b
|
2008-08-05 06:04:16 -03:00
|
|
|
print()
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
def fib2(n): # return Fibonacci series up to n
|
|
|
|
result = []
|
|
|
|
a, b = 0, 1
|
|
|
|
while b < n:
|
|
|
|
result.append(b)
|
|
|
|
a, b = b, a+b
|
|
|
|
return result
|
|
|
|
|
|
|
|
Now enter the Python interpreter and import this module with the following
|
|
|
|
command::
|
|
|
|
|
|
|
|
>>> import fibo
|
|
|
|
|
|
|
|
This does not enter the names of the functions defined in ``fibo`` directly in
|
|
|
|
the current symbol table; it only enters the module name ``fibo`` there. Using
|
|
|
|
the module name you can access the functions::
|
|
|
|
|
|
|
|
>>> fibo.fib(1000)
|
|
|
|
1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987
|
|
|
|
>>> fibo.fib2(100)
|
|
|
|
[1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
|
|
|
|
>>> fibo.__name__
|
|
|
|
'fibo'
|
|
|
|
|
|
|
|
If you intend to use a function often you can assign it to a local name::
|
|
|
|
|
|
|
|
>>> fib = fibo.fib
|
|
|
|
>>> fib(500)
|
|
|
|
1 1 2 3 5 8 13 21 34 55 89 144 233 377
|
|
|
|
|
|
|
|
|
|
|
|
.. _tut-moremodules:
|
|
|
|
|
|
|
|
More on Modules
|
|
|
|
===============
|
|
|
|
|
|
|
|
A module can contain executable statements as well as function definitions.
|
|
|
|
These statements are intended to initialize the module. They are executed only
|
2013-04-21 17:58:36 -03:00
|
|
|
the *first* time the module name is encountered in an import statement. [#]_
|
|
|
|
(They are also run if the file is executed as a script.)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
Each module has its own private symbol table, which is used as the global symbol
|
|
|
|
table by all functions defined in the module. Thus, the author of a module can
|
|
|
|
use global variables in the module without worrying about accidental clashes
|
|
|
|
with a user's global variables. On the other hand, if you know what you are
|
|
|
|
doing you can touch a module's global variables with the same notation used to
|
|
|
|
refer to its functions, ``modname.itemname``.
|
|
|
|
|
|
|
|
Modules can import other modules. It is customary but not required to place all
|
|
|
|
:keyword:`import` statements at the beginning of a module (or script, for that
|
|
|
|
matter). The imported module names are placed in the importing module's global
|
|
|
|
symbol table.
|
|
|
|
|
|
|
|
There is a variant of the :keyword:`import` statement that imports names from a
|
|
|
|
module directly into the importing module's symbol table. For example::
|
|
|
|
|
|
|
|
>>> from fibo import fib, fib2
|
|
|
|
>>> fib(500)
|
|
|
|
1 1 2 3 5 8 13 21 34 55 89 144 233 377
|
|
|
|
|
|
|
|
This does not introduce the module name from which the imports are taken in the
|
|
|
|
local symbol table (so in the example, ``fibo`` is not defined).
|
|
|
|
|
|
|
|
There is even a variant to import all names that a module defines::
|
|
|
|
|
|
|
|
>>> from fibo import *
|
|
|
|
>>> fib(500)
|
|
|
|
1 1 2 3 5 8 13 21 34 55 89 144 233 377
|
|
|
|
|
|
|
|
This imports all names except those beginning with an underscore (``_``).
|
2009-01-03 17:18:54 -04:00
|
|
|
In most cases Python programmers do not use this facility since it introduces
|
|
|
|
an unknown set of names into the interpreter, possibly hiding some things
|
2007-08-31 00:25:11 -03:00
|
|
|
you have already defined.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,74896,74901,74903,74908,74912,74930,74933,74943,74946,74952-74955,75015,75019,75032,75068,75076,75095,75098,75102,75129,75139,75230 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74779 | michael.foord | 2009-09-13 11:13:36 -0500 (Sun, 13 Sep 2009) | 1 line
Change to tutorial wording for reading text / binary files on Windows. Issue #6301.
........
r74780 | michael.foord | 2009-09-13 11:40:02 -0500 (Sun, 13 Sep 2009) | 1 line
Objects that compare equal automatically pass or fail assertAlmostEqual and assertNotAlmostEqual tests on unittest.TestCase. Issue 6567.
........
r74781 | michael.foord | 2009-09-13 11:46:19 -0500 (Sun, 13 Sep 2009) | 1 line
Note that sys._getframe is not guaranteed to exist in all implementations of Python, and a corresponding note in inspect.currentframe. Issue 6712.
........
r74782 | michael.foord | 2009-09-13 12:07:46 -0500 (Sun, 13 Sep 2009) | 1 line
Tutorial tweaks. Issue 6849.
........
r74783 | michael.foord | 2009-09-13 12:28:35 -0500 (Sun, 13 Sep 2009) | 1 line
unittest.TestLoader.loadTestsFromName honors the loader suiteClass attribute. Issue 6866.
........
r74784 | georg.brandl | 2009-09-13 13:15:07 -0500 (Sun, 13 Sep 2009) | 1 line
Typo fix.
........
r74785 | michael.foord | 2009-09-13 14:07:03 -0500 (Sun, 13 Sep 2009) | 1 line
Test discovery in unittest will only attempt to import modules that are importable; i.e. their names are valid Python identifiers. If an import fails during discovery this will be recorded as an error and test discovery will continue. Issue 6568.
........
r74786 | michael.foord | 2009-09-13 14:08:18 -0500 (Sun, 13 Sep 2009) | 1 line
Remove an extraneous space in unittest documentation.
........
r74793 | georg.brandl | 2009-09-14 09:50:47 -0500 (Mon, 14 Sep 2009) | 1 line
#6908: fix association of hashlib hash attributes.
........
r74795 | benjamin.peterson | 2009-09-14 22:36:26 -0500 (Mon, 14 Sep 2009) | 1 line
Py_SetPythonHome uses static storage #6913
........
r74811 | georg.brandl | 2009-09-15 15:26:59 -0500 (Tue, 15 Sep 2009) | 1 line
Add Armin Ronacher.
........
r74860 | benjamin.peterson | 2009-09-16 21:46:54 -0500 (Wed, 16 Sep 2009) | 1 line
kill bare except
........
r74861 | benjamin.peterson | 2009-09-16 22:18:28 -0500 (Wed, 16 Sep 2009) | 1 line
pep 8 defaults
........
r74863 | benjamin.peterson | 2009-09-16 22:27:33 -0500 (Wed, 16 Sep 2009) | 1 line
rationalize a bit
........
r74876 | georg.brandl | 2009-09-17 11:15:53 -0500 (Thu, 17 Sep 2009) | 1 line
#6932: remove paragraph that advises relying on __del__ being called.
........
r74886 | benjamin.peterson | 2009-09-17 16:33:46 -0500 (Thu, 17 Sep 2009) | 1 line
use macros
........
r74896 | georg.brandl | 2009-09-18 02:22:41 -0500 (Fri, 18 Sep 2009) | 1 line
#6936: for interactive use, quit() is just fine.
........
r74901 | georg.brandl | 2009-09-18 04:14:52 -0500 (Fri, 18 Sep 2009) | 1 line
#6905: use better exception messages in inspect when the argument is of the wrong type.
........
r74903 | georg.brandl | 2009-09-18 04:18:27 -0500 (Fri, 18 Sep 2009) | 1 line
#6938: "ident" is always a string, so use a format code which works.
........
r74908 | georg.brandl | 2009-09-18 08:57:11 -0500 (Fri, 18 Sep 2009) | 1 line
Use str.format() to fix beginner's mistake with %-style string formatting.
........
r74912 | georg.brandl | 2009-09-18 11:19:56 -0500 (Fri, 18 Sep 2009) | 1 line
Optimize optimization and fix method name in docstring.
........
r74930 | georg.brandl | 2009-09-18 16:21:41 -0500 (Fri, 18 Sep 2009) | 1 line
#6925: rewrite docs for locals() and vars() a bit.
........
r74933 | georg.brandl | 2009-09-18 16:35:59 -0500 (Fri, 18 Sep 2009) | 1 line
#6930: clarify description about byteorder handling in UTF decoder routines.
........
r74943 | georg.brandl | 2009-09-19 02:35:07 -0500 (Sat, 19 Sep 2009) | 1 line
#6944: the argument to PyArg_ParseTuple should be a tuple, otherwise a SystemError is set. Also clean up another usage of PyArg_ParseTuple.
........
r74946 | georg.brandl | 2009-09-19 03:43:16 -0500 (Sat, 19 Sep 2009) | 1 line
Update bug tracker reference.
........
r74952 | georg.brandl | 2009-09-19 05:42:34 -0500 (Sat, 19 Sep 2009) | 1 line
#6946: fix duplicate index entries for datetime classes.
........
r74953 | georg.brandl | 2009-09-19 07:04:16 -0500 (Sat, 19 Sep 2009) | 1 line
Fix references to threading.enumerate().
........
r74954 | georg.brandl | 2009-09-19 08:13:56 -0500 (Sat, 19 Sep 2009) | 1 line
Add Doug.
........
r74955 | georg.brandl | 2009-09-19 08:20:49 -0500 (Sat, 19 Sep 2009) | 1 line
Add Mark Summerfield.
........
r75015 | georg.brandl | 2009-09-22 05:55:08 -0500 (Tue, 22 Sep 2009) | 1 line
Fix encoding name.
........
r75019 | vinay.sajip | 2009-09-22 12:23:41 -0500 (Tue, 22 Sep 2009) | 1 line
Fixed a typo, and added sections on optimization and using arbitrary objects as messages.
........
r75032 | benjamin.peterson | 2009-09-22 17:15:28 -0500 (Tue, 22 Sep 2009) | 1 line
fix typos/rephrase
........
r75068 | benjamin.peterson | 2009-09-25 21:57:59 -0500 (Fri, 25 Sep 2009) | 1 line
comment out ugly xxx
........
r75076 | vinay.sajip | 2009-09-26 09:53:32 -0500 (Sat, 26 Sep 2009) | 1 line
Tidied up name of parameter in StreamHandler
........
r75095 | michael.foord | 2009-09-27 14:15:41 -0500 (Sun, 27 Sep 2009) | 1 line
Test creation moved from TestProgram.parseArgs to TestProgram.createTests exclusively. Issue 6956.
........
r75098 | michael.foord | 2009-09-27 15:08:23 -0500 (Sun, 27 Sep 2009) | 1 line
Documentation improvement for load_tests protocol in unittest. Issue 6515.
........
r75102 | skip.montanaro | 2009-09-27 21:12:27 -0500 (Sun, 27 Sep 2009) | 3 lines
Patch from Thomas Barr so that csv.Sniffer will set doublequote property.
Closes issue 6606.
........
r75129 | vinay.sajip | 2009-09-29 02:08:54 -0500 (Tue, 29 Sep 2009) | 1 line
Issue #7014: logging: Improved IronPython 2.6 compatibility.
........
r75139 | raymond.hettinger | 2009-09-29 13:53:24 -0500 (Tue, 29 Sep 2009) | 3 lines
Issue 7008: Better document str.title and show how to work around the apostrophe problem.
........
r75230 | benjamin.peterson | 2009-10-04 08:38:38 -0500 (Sun, 04 Oct 2009) | 1 line
test logging
........
2009-10-04 11:49:41 -03:00
|
|
|
Note that in general the practice of importing ``*`` from a module or package is
|
|
|
|
frowned upon, since it often causes poorly readable code. However, it is okay to
|
|
|
|
use it to save typing in interactive sessions.
|
|
|
|
|
Merged revisions 62914-62916,62918-62919,62921-62922,62924-62942,62944-62945,62947-62949 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r62914 | skip.montanaro | 2008-05-08 20:45:00 -0400 (Thu, 08 May 2008) | 4 lines
Add an example about using NamedTemporaryFile() to replace mktemp(). I'm
unclear whether the verbatim text should have been indented or by how much.
........
r62915 | benjamin.peterson | 2008-05-08 20:50:40 -0400 (Thu, 08 May 2008) | 2 lines
reindent example
........
r62927 | georg.brandl | 2008-05-09 02:09:25 -0400 (Fri, 09 May 2008) | 2 lines
#2788: add .hgignore file.
........
r62928 | georg.brandl | 2008-05-09 02:10:43 -0400 (Fri, 09 May 2008) | 2 lines
#2781: fix function name.
........
r62929 | georg.brandl | 2008-05-09 02:18:27 -0400 (Fri, 09 May 2008) | 2 lines
Add a sentence to basicConfig() that is in the docstring.
........
r62930 | georg.brandl | 2008-05-09 02:26:54 -0400 (Fri, 09 May 2008) | 2 lines
Add another link to colorsys docs.
........
r62931 | georg.brandl | 2008-05-09 02:36:07 -0400 (Fri, 09 May 2008) | 2 lines
Add Kodos as a re reference.
........
r62932 | georg.brandl | 2008-05-09 02:39:58 -0400 (Fri, 09 May 2008) | 2 lines
Add a note about using reload().
........
r62933 | andrew.kuchling | 2008-05-09 07:46:05 -0400 (Fri, 09 May 2008) | 3 lines
Update planned release date.
Uncomment PEP 370 section.
Add some module items
........
r62934 | christian.heimes | 2008-05-09 08:19:09 -0400 (Fri, 09 May 2008) | 1 line
Add --user option to build_ext
........
r62948 | mark.dickinson | 2008-05-09 13:54:23 -0400 (Fri, 09 May 2008) | 3 lines
Issue #2487. math.ldexp(x, n) raised OverflowError when n was large and
negative; fix to return an (appropriately signed) zero instead.
........
r62949 | martin.v.loewis | 2008-05-09 14:21:55 -0400 (Fri, 09 May 2008) | 1 line
Use the CHM file name that Sphinx assigns.
........
2008-05-15 19:09:29 -03:00
|
|
|
.. note::
|
|
|
|
|
|
|
|
For efficiency reasons, each module is only imported once per interpreter
|
|
|
|
session. Therefore, if you change your modules, you must restart the
|
|
|
|
interpreter -- or, if it's just one module you want to test interactively,
|
2008-12-15 04:28:37 -04:00
|
|
|
use :func:`imp.reload`, e.g. ``import imp; imp.reload(modulename)``.
|
Merged revisions 62914-62916,62918-62919,62921-62922,62924-62942,62944-62945,62947-62949 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r62914 | skip.montanaro | 2008-05-08 20:45:00 -0400 (Thu, 08 May 2008) | 4 lines
Add an example about using NamedTemporaryFile() to replace mktemp(). I'm
unclear whether the verbatim text should have been indented or by how much.
........
r62915 | benjamin.peterson | 2008-05-08 20:50:40 -0400 (Thu, 08 May 2008) | 2 lines
reindent example
........
r62927 | georg.brandl | 2008-05-09 02:09:25 -0400 (Fri, 09 May 2008) | 2 lines
#2788: add .hgignore file.
........
r62928 | georg.brandl | 2008-05-09 02:10:43 -0400 (Fri, 09 May 2008) | 2 lines
#2781: fix function name.
........
r62929 | georg.brandl | 2008-05-09 02:18:27 -0400 (Fri, 09 May 2008) | 2 lines
Add a sentence to basicConfig() that is in the docstring.
........
r62930 | georg.brandl | 2008-05-09 02:26:54 -0400 (Fri, 09 May 2008) | 2 lines
Add another link to colorsys docs.
........
r62931 | georg.brandl | 2008-05-09 02:36:07 -0400 (Fri, 09 May 2008) | 2 lines
Add Kodos as a re reference.
........
r62932 | georg.brandl | 2008-05-09 02:39:58 -0400 (Fri, 09 May 2008) | 2 lines
Add a note about using reload().
........
r62933 | andrew.kuchling | 2008-05-09 07:46:05 -0400 (Fri, 09 May 2008) | 3 lines
Update planned release date.
Uncomment PEP 370 section.
Add some module items
........
r62934 | christian.heimes | 2008-05-09 08:19:09 -0400 (Fri, 09 May 2008) | 1 line
Add --user option to build_ext
........
r62948 | mark.dickinson | 2008-05-09 13:54:23 -0400 (Fri, 09 May 2008) | 3 lines
Issue #2487. math.ldexp(x, n) raised OverflowError when n was large and
negative; fix to return an (appropriately signed) zero instead.
........
r62949 | martin.v.loewis | 2008-05-09 14:21:55 -0400 (Fri, 09 May 2008) | 1 line
Use the CHM file name that Sphinx assigns.
........
2008-05-15 19:09:29 -03:00
|
|
|
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
.. _tut-modulesasscripts:
|
|
|
|
|
|
|
|
Executing modules as scripts
|
|
|
|
----------------------------
|
|
|
|
|
|
|
|
When you run a Python module with ::
|
|
|
|
|
|
|
|
python fibo.py <arguments>
|
|
|
|
|
|
|
|
the code in the module will be executed, just as if you imported it, but with
|
|
|
|
the ``__name__`` set to ``"__main__"``. That means that by adding this code at
|
|
|
|
the end of your module::
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
import sys
|
|
|
|
fib(int(sys.argv[1]))
|
|
|
|
|
|
|
|
you can make the file usable as a script as well as an importable module,
|
|
|
|
because the code that parses the command line only runs if the module is
|
|
|
|
executed as the "main" file::
|
|
|
|
|
|
|
|
$ python fibo.py 50
|
|
|
|
1 1 2 3 5 8 13 21 34
|
|
|
|
|
|
|
|
If the module is imported, the code is not run::
|
|
|
|
|
|
|
|
>>> import fibo
|
|
|
|
>>>
|
|
|
|
|
|
|
|
This is often used either to provide a convenient user interface to a module, or
|
|
|
|
for testing purposes (running the module as a script executes a test suite).
|
|
|
|
|
|
|
|
|
|
|
|
.. _tut-searchpath:
|
|
|
|
|
|
|
|
The Module Search Path
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
.. index:: triple: module; search; path
|
|
|
|
|
2012-01-19 06:29:26 -04:00
|
|
|
When a module named :mod:`spam` is imported, the interpreter first searches for
|
|
|
|
a built-in module with that name. If not found, it then searches for a file
|
|
|
|
named :file:`spam.py` in a list of directories given by the variable
|
|
|
|
:data:`sys.path`. :data:`sys.path` is initialized from these locations:
|
|
|
|
|
|
|
|
* the directory containing the input script (or the current directory).
|
|
|
|
* :envvar:`PYTHONPATH` (a list of directory names, with the same syntax as the
|
|
|
|
shell variable :envvar:`PATH`).
|
|
|
|
* the installation-dependent default.
|
|
|
|
|
|
|
|
After initialization, Python programs can modify :data:`sys.path`. The
|
|
|
|
directory containing the script being run is placed at the beginning of the
|
|
|
|
search path, ahead of the standard library path. This means that scripts in that
|
|
|
|
directory will be loaded instead of modules of the same name in the library
|
|
|
|
directory. This is an error unless the replacement is intended. See section
|
|
|
|
:ref:`tut-standardmodules` for more information.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2007-08-31 00:25:11 -03:00
|
|
|
.. %
|
|
|
|
Do we need stuff on zip files etc. ? DUBOIS
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
"Compiled" Python files
|
|
|
|
-----------------------
|
|
|
|
|
2013-10-12 14:13:23 -03:00
|
|
|
To speed up loading modules, Python caches the compiled version of each module
|
2013-10-27 05:16:01 -03:00
|
|
|
in the ``__pycache__`` directory under the name :file:`module.{version}.pyc`,
|
2013-10-12 14:13:23 -03:00
|
|
|
where the version encodes the format of the compiled file; it generally contains
|
|
|
|
the Python version number. For example, in CPython release 3.3 the compiled
|
|
|
|
version of spam.py would be cached as ``__pycache__/spam.cpython-33.pyc``. This
|
|
|
|
naming convention allows compiled modules from different releases and different
|
|
|
|
versions of Python to coexist.
|
|
|
|
|
|
|
|
Python checks the modification date of the source against the compiled version
|
|
|
|
to see if it's out of date and needs to be recompiled. This is a completely
|
|
|
|
automatic process. Also, the compiled modules are platform-independent, so the
|
|
|
|
same library can be shared among systems with different architectures.
|
|
|
|
|
|
|
|
Python does not check the cache in two circumstances. First, it always
|
|
|
|
recompiles and does not store the result for the module that's loaded directly
|
|
|
|
from the command line. Second, it does not check the cache if there is no
|
|
|
|
source module. To support a non-source (compiled only) distribution, the
|
|
|
|
compiled module must be in the source directory, and there must not be a source
|
|
|
|
module.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
Some tips for experts:
|
|
|
|
|
2013-10-12 14:13:23 -03:00
|
|
|
* You can use the :option:`-O` or :option:`-OO` switches on the Python command
|
|
|
|
to reduce the size of a compiled module. The ``-O`` switch removes assert
|
|
|
|
statements, the ``-OO`` switch removes both assert statements and __doc__
|
|
|
|
strings. Since some programs may rely on having these available, you should
|
|
|
|
only use this option if you know what you're doing. "Optimized" modules have
|
|
|
|
a .pyo rather than a .pyc suffix and are usually smaller. Future releases may
|
|
|
|
change the effects of optimization.
|
|
|
|
|
|
|
|
* A program doesn't run any faster when it is read from a ``.pyc`` or ``.pyo``
|
|
|
|
file than when it is read from a ``.py`` file; the only thing that's faster
|
|
|
|
about ``.pyc`` or ``.pyo`` files is the speed with which they are loaded.
|
|
|
|
|
|
|
|
* The module :mod:`compileall` can create .pyc files (or .pyo files when
|
|
|
|
:option:`-O` is used) for all modules in a directory.
|
|
|
|
|
|
|
|
* There is more detail on this process, including a flow chart of the
|
|
|
|
decisions, in PEP 3147.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. _tut-standardmodules:
|
|
|
|
|
|
|
|
Standard Modules
|
|
|
|
================
|
|
|
|
|
|
|
|
.. index:: module: sys
|
|
|
|
|
|
|
|
Python comes with a library of standard modules, described in a separate
|
|
|
|
document, the Python Library Reference ("Library Reference" hereafter). Some
|
|
|
|
modules are built into the interpreter; these provide access to operations that
|
|
|
|
are not part of the core of the language but are nevertheless built in, either
|
|
|
|
for efficiency or to provide access to operating system primitives such as
|
|
|
|
system calls. The set of such modules is a configuration option which also
|
2012-08-04 14:42:24 -03:00
|
|
|
depends on the underlying platform. For example, the :mod:`winreg` module is only
|
2007-08-15 11:28:22 -03:00
|
|
|
provided on Windows systems. One particular module deserves some attention:
|
|
|
|
:mod:`sys`, which is built into every Python interpreter. The variables
|
|
|
|
``sys.ps1`` and ``sys.ps2`` define the strings used as primary and secondary
|
Merged revisions 59605-59624 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59606 | georg.brandl | 2007-12-29 11:57:00 +0100 (Sat, 29 Dec 2007) | 2 lines
Some cleanup in the docs.
........
r59611 | martin.v.loewis | 2007-12-29 19:49:21 +0100 (Sat, 29 Dec 2007) | 2 lines
Bug #1699: Define _BSD_SOURCE only on OpenBSD.
........
r59612 | raymond.hettinger | 2007-12-29 23:09:34 +0100 (Sat, 29 Dec 2007) | 1 line
Simpler documentation for itertools.tee(). Should be backported.
........
r59613 | raymond.hettinger | 2007-12-29 23:16:24 +0100 (Sat, 29 Dec 2007) | 1 line
Improve docs for itertools.groupby(). The use of xrange(0) to create a unique object is less obvious than object().
........
r59620 | christian.heimes | 2007-12-31 15:47:07 +0100 (Mon, 31 Dec 2007) | 3 lines
Added wininst-9.0.exe executable for VS 2008
Integrated bdist_wininst into PCBuild9 directory
........
r59621 | christian.heimes | 2007-12-31 15:51:18 +0100 (Mon, 31 Dec 2007) | 1 line
Moved PCbuild directory to PC/VS7.1
........
r59622 | christian.heimes | 2007-12-31 15:59:26 +0100 (Mon, 31 Dec 2007) | 1 line
Fix paths for build bot
........
r59623 | christian.heimes | 2007-12-31 16:02:41 +0100 (Mon, 31 Dec 2007) | 1 line
Fix paths for build bot, part 2
........
r59624 | christian.heimes | 2007-12-31 16:18:55 +0100 (Mon, 31 Dec 2007) | 1 line
Renamed PCBuild9 directory to PCBuild
........
2007-12-31 12:14:33 -04:00
|
|
|
prompts::
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
>>> import sys
|
|
|
|
>>> sys.ps1
|
|
|
|
'>>> '
|
|
|
|
>>> sys.ps2
|
|
|
|
'... '
|
|
|
|
>>> sys.ps1 = 'C> '
|
2007-08-31 00:25:11 -03:00
|
|
|
C> print('Yuck!')
|
2007-08-15 11:28:22 -03:00
|
|
|
Yuck!
|
|
|
|
C>
|
|
|
|
|
|
|
|
|
|
|
|
These two variables are only defined if the interpreter is in interactive mode.
|
|
|
|
|
|
|
|
The variable ``sys.path`` is a list of strings that determines the interpreter's
|
|
|
|
search path for modules. It is initialized to a default path taken from the
|
|
|
|
environment variable :envvar:`PYTHONPATH`, or from a built-in default if
|
|
|
|
:envvar:`PYTHONPATH` is not set. You can modify it using standard list
|
|
|
|
operations::
|
|
|
|
|
|
|
|
>>> import sys
|
|
|
|
>>> sys.path.append('/ufs/guido/lib/python')
|
|
|
|
|
|
|
|
|
|
|
|
.. _tut-dir:
|
|
|
|
|
|
|
|
The :func:`dir` Function
|
|
|
|
========================
|
|
|
|
|
|
|
|
The built-in function :func:`dir` is used to find out which names a module
|
|
|
|
defines. It returns a sorted list of strings::
|
|
|
|
|
|
|
|
>>> import fibo, sys
|
|
|
|
>>> dir(fibo)
|
|
|
|
['__name__', 'fib', 'fib2']
|
2012-11-17 06:50:14 -04:00
|
|
|
>>> dir(sys) # doctest: +NORMALIZE_WHITESPACE
|
2012-11-17 06:54:45 -04:00
|
|
|
['__displayhook__', '__doc__', '__egginsert', '__excepthook__',
|
|
|
|
'__loader__', '__name__', '__package__', '__plen', '__stderr__',
|
|
|
|
'__stdin__', '__stdout__', '_clear_type_cache', '_current_frames',
|
|
|
|
'_debugmallocstats', '_getframe', '_home', '_mercurial', '_xoptions',
|
|
|
|
'abiflags', 'api_version', 'argv', 'base_exec_prefix', 'base_prefix',
|
|
|
|
'builtin_module_names', 'byteorder', 'call_tracing', 'callstats',
|
|
|
|
'copyright', 'displayhook', 'dont_write_bytecode', 'exc_info',
|
2012-11-17 06:50:14 -04:00
|
|
|
'excepthook', 'exec_prefix', 'executable', 'exit', 'flags', 'float_info',
|
|
|
|
'float_repr_style', 'getcheckinterval', 'getdefaultencoding',
|
|
|
|
'getdlopenflags', 'getfilesystemencoding', 'getobjects', 'getprofile',
|
|
|
|
'getrecursionlimit', 'getrefcount', 'getsizeof', 'getswitchinterval',
|
2012-11-17 06:54:45 -04:00
|
|
|
'gettotalrefcount', 'gettrace', 'hash_info', 'hexversion',
|
|
|
|
'implementation', 'int_info', 'intern', 'maxsize', 'maxunicode',
|
2007-08-15 11:28:22 -03:00
|
|
|
'meta_path', 'modules', 'path', 'path_hooks', 'path_importer_cache',
|
2012-11-17 06:54:45 -04:00
|
|
|
'platform', 'prefix', 'ps1', 'setcheckinterval', 'setdlopenflags',
|
|
|
|
'setprofile', 'setrecursionlimit', 'setswitchinterval', 'settrace',
|
|
|
|
'stderr', 'stdin', 'stdout', 'thread_info', 'version', 'version_info',
|
|
|
|
'warnoptions']
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
Without arguments, :func:`dir` lists the names you have defined currently::
|
|
|
|
|
|
|
|
>>> a = [1, 2, 3, 4, 5]
|
|
|
|
>>> import fibo
|
|
|
|
>>> fib = fibo.fib
|
|
|
|
>>> dir()
|
2012-11-17 06:50:14 -04:00
|
|
|
['__builtins__', '__name__', 'a', 'fib', 'fibo', 'sys']
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
Note that it lists all types of names: variables, modules, functions, etc.
|
|
|
|
|
2007-12-02 05:40:06 -04:00
|
|
|
.. index:: module: builtins
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
:func:`dir` does not list the names of built-in functions and variables. If you
|
|
|
|
want a list of those, they are defined in the standard module
|
2007-12-02 05:40:06 -04:00
|
|
|
:mod:`builtins`::
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2007-12-02 05:40:06 -04:00
|
|
|
>>> import builtins
|
2012-11-17 06:50:14 -04:00
|
|
|
>>> dir(builtins) # doctest: +NORMALIZE_WHITESPACE
|
|
|
|
['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException',
|
2012-11-17 06:54:45 -04:00
|
|
|
'BlockingIOError', 'BrokenPipeError', 'BufferError', 'BytesWarning',
|
|
|
|
'ChildProcessError', 'ConnectionAbortedError', 'ConnectionError',
|
|
|
|
'ConnectionRefusedError', 'ConnectionResetError', 'DeprecationWarning',
|
|
|
|
'EOFError', 'Ellipsis', 'EnvironmentError', 'Exception', 'False',
|
|
|
|
'FileExistsError', 'FileNotFoundError', 'FloatingPointError',
|
2012-11-17 06:50:14 -04:00
|
|
|
'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError',
|
2012-11-17 06:54:45 -04:00
|
|
|
'ImportWarning', 'IndentationError', 'IndexError', 'InterruptedError',
|
|
|
|
'IsADirectoryError', 'KeyError', 'KeyboardInterrupt', 'LookupError',
|
|
|
|
'MemoryError', 'NameError', 'None', 'NotADirectoryError', 'NotImplemented',
|
|
|
|
'NotImplementedError', 'OSError', 'OverflowError',
|
|
|
|
'PendingDeprecationWarning', 'PermissionError', 'ProcessLookupError',
|
|
|
|
'ReferenceError', 'ResourceWarning', 'RuntimeError', 'RuntimeWarning',
|
|
|
|
'StopIteration', 'SyntaxError', 'SyntaxWarning', 'SystemError',
|
|
|
|
'SystemExit', 'TabError', 'TimeoutError', 'True', 'TypeError',
|
|
|
|
'UnboundLocalError', 'UnicodeDecodeError', 'UnicodeEncodeError',
|
|
|
|
'UnicodeError', 'UnicodeTranslateError', 'UnicodeWarning', 'UserWarning',
|
|
|
|
'ValueError', 'Warning', 'ZeroDivisionError', '_', '__build_class__',
|
|
|
|
'__debug__', '__doc__', '__import__', '__name__', '__package__', 'abs',
|
|
|
|
'all', 'any', 'ascii', 'bin', 'bool', 'bytearray', 'bytes', 'callable',
|
|
|
|
'chr', 'classmethod', 'compile', 'complex', 'copyright', 'credits',
|
|
|
|
'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval', 'exec', 'exit',
|
|
|
|
'filter', 'float', 'format', 'frozenset', 'getattr', 'globals', 'hasattr',
|
|
|
|
'hash', 'help', 'hex', 'id', 'input', 'int', 'isinstance', 'issubclass',
|
|
|
|
'iter', 'len', 'license', 'list', 'locals', 'map', 'max', 'memoryview',
|
|
|
|
'min', 'next', 'object', 'oct', 'open', 'ord', 'pow', 'print', 'property',
|
|
|
|
'quit', 'range', 'repr', 'reversed', 'round', 'set', 'setattr', 'slice',
|
|
|
|
'sorted', 'staticmethod', 'str', 'sum', 'super', 'tuple', 'type', 'vars',
|
|
|
|
'zip']
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
.. _tut-packages:
|
|
|
|
|
|
|
|
Packages
|
|
|
|
========
|
|
|
|
|
|
|
|
Packages are a way of structuring Python's module namespace by using "dotted
|
|
|
|
module names". For example, the module name :mod:`A.B` designates a submodule
|
|
|
|
named ``B`` in a package named ``A``. Just like the use of modules saves the
|
|
|
|
authors of different modules from having to worry about each other's global
|
|
|
|
variable names, the use of dotted module names saves the authors of multi-module
|
|
|
|
packages like NumPy or the Python Imaging Library from having to worry about
|
|
|
|
each other's module names.
|
|
|
|
|
|
|
|
Suppose you want to design a collection of modules (a "package") for the uniform
|
|
|
|
handling of sound files and sound data. There are many different sound file
|
|
|
|
formats (usually recognized by their extension, for example: :file:`.wav`,
|
|
|
|
:file:`.aiff`, :file:`.au`), so you may need to create and maintain a growing
|
|
|
|
collection of modules for the conversion between the various file formats.
|
|
|
|
There are also many different operations you might want to perform on sound data
|
|
|
|
(such as mixing, adding echo, applying an equalizer function, creating an
|
|
|
|
artificial stereo effect), so in addition you will be writing a never-ending
|
|
|
|
stream of modules to perform these operations. Here's a possible structure for
|
2013-10-06 06:08:24 -03:00
|
|
|
your package (expressed in terms of a hierarchical filesystem):
|
|
|
|
|
|
|
|
.. code-block:: text
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
sound/ Top-level package
|
|
|
|
__init__.py Initialize the sound package
|
|
|
|
formats/ Subpackage for file format conversions
|
|
|
|
__init__.py
|
|
|
|
wavread.py
|
|
|
|
wavwrite.py
|
|
|
|
aiffread.py
|
|
|
|
aiffwrite.py
|
|
|
|
auread.py
|
|
|
|
auwrite.py
|
|
|
|
...
|
|
|
|
effects/ Subpackage for sound effects
|
|
|
|
__init__.py
|
|
|
|
echo.py
|
|
|
|
surround.py
|
|
|
|
reverse.py
|
|
|
|
...
|
|
|
|
filters/ Subpackage for filters
|
|
|
|
__init__.py
|
|
|
|
equalizer.py
|
|
|
|
vocoder.py
|
|
|
|
karaoke.py
|
|
|
|
...
|
|
|
|
|
|
|
|
When importing the package, Python searches through the directories on
|
|
|
|
``sys.path`` looking for the package subdirectory.
|
|
|
|
|
|
|
|
The :file:`__init__.py` files are required to make Python treat the directories
|
|
|
|
as containing packages; this is done to prevent directories with a common name,
|
|
|
|
such as ``string``, from unintentionally hiding valid modules that occur later
|
|
|
|
on the module search path. In the simplest case, :file:`__init__.py` can just be
|
|
|
|
an empty file, but it can also execute initialization code for the package or
|
|
|
|
set the ``__all__`` variable, described later.
|
|
|
|
|
|
|
|
Users of the package can import individual modules from the package, for
|
|
|
|
example::
|
|
|
|
|
|
|
|
import sound.effects.echo
|
|
|
|
|
|
|
|
This loads the submodule :mod:`sound.effects.echo`. It must be referenced with
|
|
|
|
its full name. ::
|
|
|
|
|
|
|
|
sound.effects.echo.echofilter(input, output, delay=0.7, atten=4)
|
|
|
|
|
|
|
|
An alternative way of importing the submodule is::
|
|
|
|
|
|
|
|
from sound.effects import echo
|
|
|
|
|
|
|
|
This also loads the submodule :mod:`echo`, and makes it available without its
|
|
|
|
package prefix, so it can be used as follows::
|
|
|
|
|
|
|
|
echo.echofilter(input, output, delay=0.7, atten=4)
|
|
|
|
|
|
|
|
Yet another variation is to import the desired function or variable directly::
|
|
|
|
|
|
|
|
from sound.effects.echo import echofilter
|
|
|
|
|
|
|
|
Again, this loads the submodule :mod:`echo`, but this makes its function
|
|
|
|
:func:`echofilter` directly available::
|
|
|
|
|
|
|
|
echofilter(input, output, delay=0.7, atten=4)
|
|
|
|
|
|
|
|
Note that when using ``from package import item``, the item can be either a
|
|
|
|
submodule (or subpackage) of the package, or some other name defined in the
|
|
|
|
package, like a function, class or variable. The ``import`` statement first
|
|
|
|
tests whether the item is defined in the package; if not, it assumes it is a
|
|
|
|
module and attempts to load it. If it fails to find it, an :exc:`ImportError`
|
|
|
|
exception is raised.
|
|
|
|
|
|
|
|
Contrarily, when using syntax like ``import item.subitem.subsubitem``, each item
|
|
|
|
except for the last must be a package; the last item can be a module or a
|
|
|
|
package but can't be a class or function or variable defined in the previous
|
|
|
|
item.
|
|
|
|
|
|
|
|
|
|
|
|
.. _tut-pkg-import-star:
|
|
|
|
|
|
|
|
Importing \* From a Package
|
|
|
|
---------------------------
|
|
|
|
|
|
|
|
.. index:: single: __all__
|
|
|
|
|
|
|
|
Now what happens when the user writes ``from sound.effects import *``? Ideally,
|
|
|
|
one would hope that this somehow goes out to the filesystem, finds which
|
Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,74896,74901,74903,74908,74912,74930,74933,74943,74946,74952-74955,75015,75019,75032,75068,75076,75095,75098,75102,75129,75139,75230 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74779 | michael.foord | 2009-09-13 11:13:36 -0500 (Sun, 13 Sep 2009) | 1 line
Change to tutorial wording for reading text / binary files on Windows. Issue #6301.
........
r74780 | michael.foord | 2009-09-13 11:40:02 -0500 (Sun, 13 Sep 2009) | 1 line
Objects that compare equal automatically pass or fail assertAlmostEqual and assertNotAlmostEqual tests on unittest.TestCase. Issue 6567.
........
r74781 | michael.foord | 2009-09-13 11:46:19 -0500 (Sun, 13 Sep 2009) | 1 line
Note that sys._getframe is not guaranteed to exist in all implementations of Python, and a corresponding note in inspect.currentframe. Issue 6712.
........
r74782 | michael.foord | 2009-09-13 12:07:46 -0500 (Sun, 13 Sep 2009) | 1 line
Tutorial tweaks. Issue 6849.
........
r74783 | michael.foord | 2009-09-13 12:28:35 -0500 (Sun, 13 Sep 2009) | 1 line
unittest.TestLoader.loadTestsFromName honors the loader suiteClass attribute. Issue 6866.
........
r74784 | georg.brandl | 2009-09-13 13:15:07 -0500 (Sun, 13 Sep 2009) | 1 line
Typo fix.
........
r74785 | michael.foord | 2009-09-13 14:07:03 -0500 (Sun, 13 Sep 2009) | 1 line
Test discovery in unittest will only attempt to import modules that are importable; i.e. their names are valid Python identifiers. If an import fails during discovery this will be recorded as an error and test discovery will continue. Issue 6568.
........
r74786 | michael.foord | 2009-09-13 14:08:18 -0500 (Sun, 13 Sep 2009) | 1 line
Remove an extraneous space in unittest documentation.
........
r74793 | georg.brandl | 2009-09-14 09:50:47 -0500 (Mon, 14 Sep 2009) | 1 line
#6908: fix association of hashlib hash attributes.
........
r74795 | benjamin.peterson | 2009-09-14 22:36:26 -0500 (Mon, 14 Sep 2009) | 1 line
Py_SetPythonHome uses static storage #6913
........
r74811 | georg.brandl | 2009-09-15 15:26:59 -0500 (Tue, 15 Sep 2009) | 1 line
Add Armin Ronacher.
........
r74860 | benjamin.peterson | 2009-09-16 21:46:54 -0500 (Wed, 16 Sep 2009) | 1 line
kill bare except
........
r74861 | benjamin.peterson | 2009-09-16 22:18:28 -0500 (Wed, 16 Sep 2009) | 1 line
pep 8 defaults
........
r74863 | benjamin.peterson | 2009-09-16 22:27:33 -0500 (Wed, 16 Sep 2009) | 1 line
rationalize a bit
........
r74876 | georg.brandl | 2009-09-17 11:15:53 -0500 (Thu, 17 Sep 2009) | 1 line
#6932: remove paragraph that advises relying on __del__ being called.
........
r74886 | benjamin.peterson | 2009-09-17 16:33:46 -0500 (Thu, 17 Sep 2009) | 1 line
use macros
........
r74896 | georg.brandl | 2009-09-18 02:22:41 -0500 (Fri, 18 Sep 2009) | 1 line
#6936: for interactive use, quit() is just fine.
........
r74901 | georg.brandl | 2009-09-18 04:14:52 -0500 (Fri, 18 Sep 2009) | 1 line
#6905: use better exception messages in inspect when the argument is of the wrong type.
........
r74903 | georg.brandl | 2009-09-18 04:18:27 -0500 (Fri, 18 Sep 2009) | 1 line
#6938: "ident" is always a string, so use a format code which works.
........
r74908 | georg.brandl | 2009-09-18 08:57:11 -0500 (Fri, 18 Sep 2009) | 1 line
Use str.format() to fix beginner's mistake with %-style string formatting.
........
r74912 | georg.brandl | 2009-09-18 11:19:56 -0500 (Fri, 18 Sep 2009) | 1 line
Optimize optimization and fix method name in docstring.
........
r74930 | georg.brandl | 2009-09-18 16:21:41 -0500 (Fri, 18 Sep 2009) | 1 line
#6925: rewrite docs for locals() and vars() a bit.
........
r74933 | georg.brandl | 2009-09-18 16:35:59 -0500 (Fri, 18 Sep 2009) | 1 line
#6930: clarify description about byteorder handling in UTF decoder routines.
........
r74943 | georg.brandl | 2009-09-19 02:35:07 -0500 (Sat, 19 Sep 2009) | 1 line
#6944: the argument to PyArg_ParseTuple should be a tuple, otherwise a SystemError is set. Also clean up another usage of PyArg_ParseTuple.
........
r74946 | georg.brandl | 2009-09-19 03:43:16 -0500 (Sat, 19 Sep 2009) | 1 line
Update bug tracker reference.
........
r74952 | georg.brandl | 2009-09-19 05:42:34 -0500 (Sat, 19 Sep 2009) | 1 line
#6946: fix duplicate index entries for datetime classes.
........
r74953 | georg.brandl | 2009-09-19 07:04:16 -0500 (Sat, 19 Sep 2009) | 1 line
Fix references to threading.enumerate().
........
r74954 | georg.brandl | 2009-09-19 08:13:56 -0500 (Sat, 19 Sep 2009) | 1 line
Add Doug.
........
r74955 | georg.brandl | 2009-09-19 08:20:49 -0500 (Sat, 19 Sep 2009) | 1 line
Add Mark Summerfield.
........
r75015 | georg.brandl | 2009-09-22 05:55:08 -0500 (Tue, 22 Sep 2009) | 1 line
Fix encoding name.
........
r75019 | vinay.sajip | 2009-09-22 12:23:41 -0500 (Tue, 22 Sep 2009) | 1 line
Fixed a typo, and added sections on optimization and using arbitrary objects as messages.
........
r75032 | benjamin.peterson | 2009-09-22 17:15:28 -0500 (Tue, 22 Sep 2009) | 1 line
fix typos/rephrase
........
r75068 | benjamin.peterson | 2009-09-25 21:57:59 -0500 (Fri, 25 Sep 2009) | 1 line
comment out ugly xxx
........
r75076 | vinay.sajip | 2009-09-26 09:53:32 -0500 (Sat, 26 Sep 2009) | 1 line
Tidied up name of parameter in StreamHandler
........
r75095 | michael.foord | 2009-09-27 14:15:41 -0500 (Sun, 27 Sep 2009) | 1 line
Test creation moved from TestProgram.parseArgs to TestProgram.createTests exclusively. Issue 6956.
........
r75098 | michael.foord | 2009-09-27 15:08:23 -0500 (Sun, 27 Sep 2009) | 1 line
Documentation improvement for load_tests protocol in unittest. Issue 6515.
........
r75102 | skip.montanaro | 2009-09-27 21:12:27 -0500 (Sun, 27 Sep 2009) | 3 lines
Patch from Thomas Barr so that csv.Sniffer will set doublequote property.
Closes issue 6606.
........
r75129 | vinay.sajip | 2009-09-29 02:08:54 -0500 (Tue, 29 Sep 2009) | 1 line
Issue #7014: logging: Improved IronPython 2.6 compatibility.
........
r75139 | raymond.hettinger | 2009-09-29 13:53:24 -0500 (Tue, 29 Sep 2009) | 3 lines
Issue 7008: Better document str.title and show how to work around the apostrophe problem.
........
r75230 | benjamin.peterson | 2009-10-04 08:38:38 -0500 (Sun, 04 Oct 2009) | 1 line
test logging
........
2009-10-04 11:49:41 -03:00
|
|
|
submodules are present in the package, and imports them all. This could take a
|
|
|
|
long time and importing sub-modules might have unwanted side-effects that should
|
|
|
|
only happen when the sub-module is explicitly imported.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
The only solution is for the package author to provide an explicit index of the
|
Merged revisions 74074,74077,74111,74188,74192-74193,74200,74252-74253,74258-74261 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74074 | georg.brandl | 2009-07-18 05:03:10 -0400 (Sat, 18 Jul 2009) | 1 line
#6513: fix example code: warning categories are classes, not instances.
........
r74077 | georg.brandl | 2009-07-18 05:43:40 -0400 (Sat, 18 Jul 2009) | 1 line
#6489: fix an ambiguity in getiterator() documentation.
........
r74111 | benjamin.peterson | 2009-07-20 09:30:10 -0400 (Mon, 20 Jul 2009) | 1 line
remove docs for deprecated -p option
........
r74188 | benjamin.peterson | 2009-07-23 10:25:31 -0400 (Thu, 23 Jul 2009) | 1 line
use bools
........
r74192 | georg.brandl | 2009-07-24 12:28:38 -0400 (Fri, 24 Jul 2009) | 1 line
Fix arg types of et#.
........
r74193 | georg.brandl | 2009-07-24 12:46:38 -0400 (Fri, 24 Jul 2009) | 1 line
Dont put "void" in signature for nullary functions.
........
r74200 | georg.brandl | 2009-07-25 09:02:15 -0400 (Sat, 25 Jul 2009) | 1 line
#6571: add index entries for more operators.
........
r74252 | georg.brandl | 2009-07-29 12:06:31 -0400 (Wed, 29 Jul 2009) | 1 line
#6593: fix link targets.
........
r74253 | georg.brandl | 2009-07-29 12:09:17 -0400 (Wed, 29 Jul 2009) | 1 line
#6591: add reference to ioctl in fcntl module for platforms other than Windows.
........
r74258 | georg.brandl | 2009-07-29 12:57:05 -0400 (Wed, 29 Jul 2009) | 1 line
Add a link to readline, and mention IPython and bpython.
........
r74259 | georg.brandl | 2009-07-29 13:07:21 -0400 (Wed, 29 Jul 2009) | 1 line
Fix some markup and small factual glitches found by M. Markert.
........
r74260 | georg.brandl | 2009-07-29 13:15:20 -0400 (Wed, 29 Jul 2009) | 1 line
Fix a few markup glitches.
........
r74261 | georg.brandl | 2009-07-29 13:50:25 -0400 (Wed, 29 Jul 2009) | 1 line
Rewrite the section about classes a bit; mostly tidbits, and a larger update to the section about "private" variables to reflect the Pythonic consensus better.
........
2009-07-29 16:54:39 -03:00
|
|
|
package. The :keyword:`import` statement uses the following convention: if a package's
|
2007-08-15 11:28:22 -03:00
|
|
|
:file:`__init__.py` code defines a list named ``__all__``, it is taken to be the
|
|
|
|
list of module names that should be imported when ``from package import *`` is
|
|
|
|
encountered. It is up to the package author to keep this list up-to-date when a
|
|
|
|
new version of the package is released. Package authors may also decide not to
|
|
|
|
support it, if they don't see a use for importing \* from their package. For
|
2013-10-06 14:21:14 -03:00
|
|
|
example, the file :file:`sound/effects/__init__.py` could contain the following
|
2007-08-15 11:28:22 -03:00
|
|
|
code::
|
|
|
|
|
|
|
|
__all__ = ["echo", "surround", "reverse"]
|
|
|
|
|
|
|
|
This would mean that ``from sound.effects import *`` would import the three
|
|
|
|
named submodules of the :mod:`sound` package.
|
|
|
|
|
|
|
|
If ``__all__`` is not defined, the statement ``from sound.effects import *``
|
|
|
|
does *not* import all submodules from the package :mod:`sound.effects` into the
|
|
|
|
current namespace; it only ensures that the package :mod:`sound.effects` has
|
|
|
|
been imported (possibly running any initialization code in :file:`__init__.py`)
|
|
|
|
and then imports whatever names are defined in the package. This includes any
|
|
|
|
names defined (and submodules explicitly loaded) by :file:`__init__.py`. It
|
|
|
|
also includes any submodules of the package that were explicitly loaded by
|
Merged revisions 74074,74077,74111,74188,74192-74193,74200,74252-74253,74258-74261 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74074 | georg.brandl | 2009-07-18 05:03:10 -0400 (Sat, 18 Jul 2009) | 1 line
#6513: fix example code: warning categories are classes, not instances.
........
r74077 | georg.brandl | 2009-07-18 05:43:40 -0400 (Sat, 18 Jul 2009) | 1 line
#6489: fix an ambiguity in getiterator() documentation.
........
r74111 | benjamin.peterson | 2009-07-20 09:30:10 -0400 (Mon, 20 Jul 2009) | 1 line
remove docs for deprecated -p option
........
r74188 | benjamin.peterson | 2009-07-23 10:25:31 -0400 (Thu, 23 Jul 2009) | 1 line
use bools
........
r74192 | georg.brandl | 2009-07-24 12:28:38 -0400 (Fri, 24 Jul 2009) | 1 line
Fix arg types of et#.
........
r74193 | georg.brandl | 2009-07-24 12:46:38 -0400 (Fri, 24 Jul 2009) | 1 line
Dont put "void" in signature for nullary functions.
........
r74200 | georg.brandl | 2009-07-25 09:02:15 -0400 (Sat, 25 Jul 2009) | 1 line
#6571: add index entries for more operators.
........
r74252 | georg.brandl | 2009-07-29 12:06:31 -0400 (Wed, 29 Jul 2009) | 1 line
#6593: fix link targets.
........
r74253 | georg.brandl | 2009-07-29 12:09:17 -0400 (Wed, 29 Jul 2009) | 1 line
#6591: add reference to ioctl in fcntl module for platforms other than Windows.
........
r74258 | georg.brandl | 2009-07-29 12:57:05 -0400 (Wed, 29 Jul 2009) | 1 line
Add a link to readline, and mention IPython and bpython.
........
r74259 | georg.brandl | 2009-07-29 13:07:21 -0400 (Wed, 29 Jul 2009) | 1 line
Fix some markup and small factual glitches found by M. Markert.
........
r74260 | georg.brandl | 2009-07-29 13:15:20 -0400 (Wed, 29 Jul 2009) | 1 line
Fix a few markup glitches.
........
r74261 | georg.brandl | 2009-07-29 13:50:25 -0400 (Wed, 29 Jul 2009) | 1 line
Rewrite the section about classes a bit; mostly tidbits, and a larger update to the section about "private" variables to reflect the Pythonic consensus better.
........
2009-07-29 16:54:39 -03:00
|
|
|
previous :keyword:`import` statements. Consider this code::
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
import sound.effects.echo
|
|
|
|
import sound.effects.surround
|
|
|
|
from sound.effects import *
|
|
|
|
|
Merged revisions 74074,74077,74111,74188,74192-74193,74200,74252-74253,74258-74261 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74074 | georg.brandl | 2009-07-18 05:03:10 -0400 (Sat, 18 Jul 2009) | 1 line
#6513: fix example code: warning categories are classes, not instances.
........
r74077 | georg.brandl | 2009-07-18 05:43:40 -0400 (Sat, 18 Jul 2009) | 1 line
#6489: fix an ambiguity in getiterator() documentation.
........
r74111 | benjamin.peterson | 2009-07-20 09:30:10 -0400 (Mon, 20 Jul 2009) | 1 line
remove docs for deprecated -p option
........
r74188 | benjamin.peterson | 2009-07-23 10:25:31 -0400 (Thu, 23 Jul 2009) | 1 line
use bools
........
r74192 | georg.brandl | 2009-07-24 12:28:38 -0400 (Fri, 24 Jul 2009) | 1 line
Fix arg types of et#.
........
r74193 | georg.brandl | 2009-07-24 12:46:38 -0400 (Fri, 24 Jul 2009) | 1 line
Dont put "void" in signature for nullary functions.
........
r74200 | georg.brandl | 2009-07-25 09:02:15 -0400 (Sat, 25 Jul 2009) | 1 line
#6571: add index entries for more operators.
........
r74252 | georg.brandl | 2009-07-29 12:06:31 -0400 (Wed, 29 Jul 2009) | 1 line
#6593: fix link targets.
........
r74253 | georg.brandl | 2009-07-29 12:09:17 -0400 (Wed, 29 Jul 2009) | 1 line
#6591: add reference to ioctl in fcntl module for platforms other than Windows.
........
r74258 | georg.brandl | 2009-07-29 12:57:05 -0400 (Wed, 29 Jul 2009) | 1 line
Add a link to readline, and mention IPython and bpython.
........
r74259 | georg.brandl | 2009-07-29 13:07:21 -0400 (Wed, 29 Jul 2009) | 1 line
Fix some markup and small factual glitches found by M. Markert.
........
r74260 | georg.brandl | 2009-07-29 13:15:20 -0400 (Wed, 29 Jul 2009) | 1 line
Fix a few markup glitches.
........
r74261 | georg.brandl | 2009-07-29 13:50:25 -0400 (Wed, 29 Jul 2009) | 1 line
Rewrite the section about classes a bit; mostly tidbits, and a larger update to the section about "private" variables to reflect the Pythonic consensus better.
........
2009-07-29 16:54:39 -03:00
|
|
|
In this example, the :mod:`echo` and :mod:`surround` modules are imported in the
|
|
|
|
current namespace because they are defined in the :mod:`sound.effects` package
|
|
|
|
when the ``from...import`` statement is executed. (This also works when
|
|
|
|
``__all__`` is defined.)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,74896,74901,74903,74908,74912,74930,74933,74943,74946,74952-74955,75015,75019,75032,75068,75076,75095,75098,75102,75129,75139,75230 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74779 | michael.foord | 2009-09-13 11:13:36 -0500 (Sun, 13 Sep 2009) | 1 line
Change to tutorial wording for reading text / binary files on Windows. Issue #6301.
........
r74780 | michael.foord | 2009-09-13 11:40:02 -0500 (Sun, 13 Sep 2009) | 1 line
Objects that compare equal automatically pass or fail assertAlmostEqual and assertNotAlmostEqual tests on unittest.TestCase. Issue 6567.
........
r74781 | michael.foord | 2009-09-13 11:46:19 -0500 (Sun, 13 Sep 2009) | 1 line
Note that sys._getframe is not guaranteed to exist in all implementations of Python, and a corresponding note in inspect.currentframe. Issue 6712.
........
r74782 | michael.foord | 2009-09-13 12:07:46 -0500 (Sun, 13 Sep 2009) | 1 line
Tutorial tweaks. Issue 6849.
........
r74783 | michael.foord | 2009-09-13 12:28:35 -0500 (Sun, 13 Sep 2009) | 1 line
unittest.TestLoader.loadTestsFromName honors the loader suiteClass attribute. Issue 6866.
........
r74784 | georg.brandl | 2009-09-13 13:15:07 -0500 (Sun, 13 Sep 2009) | 1 line
Typo fix.
........
r74785 | michael.foord | 2009-09-13 14:07:03 -0500 (Sun, 13 Sep 2009) | 1 line
Test discovery in unittest will only attempt to import modules that are importable; i.e. their names are valid Python identifiers. If an import fails during discovery this will be recorded as an error and test discovery will continue. Issue 6568.
........
r74786 | michael.foord | 2009-09-13 14:08:18 -0500 (Sun, 13 Sep 2009) | 1 line
Remove an extraneous space in unittest documentation.
........
r74793 | georg.brandl | 2009-09-14 09:50:47 -0500 (Mon, 14 Sep 2009) | 1 line
#6908: fix association of hashlib hash attributes.
........
r74795 | benjamin.peterson | 2009-09-14 22:36:26 -0500 (Mon, 14 Sep 2009) | 1 line
Py_SetPythonHome uses static storage #6913
........
r74811 | georg.brandl | 2009-09-15 15:26:59 -0500 (Tue, 15 Sep 2009) | 1 line
Add Armin Ronacher.
........
r74860 | benjamin.peterson | 2009-09-16 21:46:54 -0500 (Wed, 16 Sep 2009) | 1 line
kill bare except
........
r74861 | benjamin.peterson | 2009-09-16 22:18:28 -0500 (Wed, 16 Sep 2009) | 1 line
pep 8 defaults
........
r74863 | benjamin.peterson | 2009-09-16 22:27:33 -0500 (Wed, 16 Sep 2009) | 1 line
rationalize a bit
........
r74876 | georg.brandl | 2009-09-17 11:15:53 -0500 (Thu, 17 Sep 2009) | 1 line
#6932: remove paragraph that advises relying on __del__ being called.
........
r74886 | benjamin.peterson | 2009-09-17 16:33:46 -0500 (Thu, 17 Sep 2009) | 1 line
use macros
........
r74896 | georg.brandl | 2009-09-18 02:22:41 -0500 (Fri, 18 Sep 2009) | 1 line
#6936: for interactive use, quit() is just fine.
........
r74901 | georg.brandl | 2009-09-18 04:14:52 -0500 (Fri, 18 Sep 2009) | 1 line
#6905: use better exception messages in inspect when the argument is of the wrong type.
........
r74903 | georg.brandl | 2009-09-18 04:18:27 -0500 (Fri, 18 Sep 2009) | 1 line
#6938: "ident" is always a string, so use a format code which works.
........
r74908 | georg.brandl | 2009-09-18 08:57:11 -0500 (Fri, 18 Sep 2009) | 1 line
Use str.format() to fix beginner's mistake with %-style string formatting.
........
r74912 | georg.brandl | 2009-09-18 11:19:56 -0500 (Fri, 18 Sep 2009) | 1 line
Optimize optimization and fix method name in docstring.
........
r74930 | georg.brandl | 2009-09-18 16:21:41 -0500 (Fri, 18 Sep 2009) | 1 line
#6925: rewrite docs for locals() and vars() a bit.
........
r74933 | georg.brandl | 2009-09-18 16:35:59 -0500 (Fri, 18 Sep 2009) | 1 line
#6930: clarify description about byteorder handling in UTF decoder routines.
........
r74943 | georg.brandl | 2009-09-19 02:35:07 -0500 (Sat, 19 Sep 2009) | 1 line
#6944: the argument to PyArg_ParseTuple should be a tuple, otherwise a SystemError is set. Also clean up another usage of PyArg_ParseTuple.
........
r74946 | georg.brandl | 2009-09-19 03:43:16 -0500 (Sat, 19 Sep 2009) | 1 line
Update bug tracker reference.
........
r74952 | georg.brandl | 2009-09-19 05:42:34 -0500 (Sat, 19 Sep 2009) | 1 line
#6946: fix duplicate index entries for datetime classes.
........
r74953 | georg.brandl | 2009-09-19 07:04:16 -0500 (Sat, 19 Sep 2009) | 1 line
Fix references to threading.enumerate().
........
r74954 | georg.brandl | 2009-09-19 08:13:56 -0500 (Sat, 19 Sep 2009) | 1 line
Add Doug.
........
r74955 | georg.brandl | 2009-09-19 08:20:49 -0500 (Sat, 19 Sep 2009) | 1 line
Add Mark Summerfield.
........
r75015 | georg.brandl | 2009-09-22 05:55:08 -0500 (Tue, 22 Sep 2009) | 1 line
Fix encoding name.
........
r75019 | vinay.sajip | 2009-09-22 12:23:41 -0500 (Tue, 22 Sep 2009) | 1 line
Fixed a typo, and added sections on optimization and using arbitrary objects as messages.
........
r75032 | benjamin.peterson | 2009-09-22 17:15:28 -0500 (Tue, 22 Sep 2009) | 1 line
fix typos/rephrase
........
r75068 | benjamin.peterson | 2009-09-25 21:57:59 -0500 (Fri, 25 Sep 2009) | 1 line
comment out ugly xxx
........
r75076 | vinay.sajip | 2009-09-26 09:53:32 -0500 (Sat, 26 Sep 2009) | 1 line
Tidied up name of parameter in StreamHandler
........
r75095 | michael.foord | 2009-09-27 14:15:41 -0500 (Sun, 27 Sep 2009) | 1 line
Test creation moved from TestProgram.parseArgs to TestProgram.createTests exclusively. Issue 6956.
........
r75098 | michael.foord | 2009-09-27 15:08:23 -0500 (Sun, 27 Sep 2009) | 1 line
Documentation improvement for load_tests protocol in unittest. Issue 6515.
........
r75102 | skip.montanaro | 2009-09-27 21:12:27 -0500 (Sun, 27 Sep 2009) | 3 lines
Patch from Thomas Barr so that csv.Sniffer will set doublequote property.
Closes issue 6606.
........
r75129 | vinay.sajip | 2009-09-29 02:08:54 -0500 (Tue, 29 Sep 2009) | 1 line
Issue #7014: logging: Improved IronPython 2.6 compatibility.
........
r75139 | raymond.hettinger | 2009-09-29 13:53:24 -0500 (Tue, 29 Sep 2009) | 3 lines
Issue 7008: Better document str.title and show how to work around the apostrophe problem.
........
r75230 | benjamin.peterson | 2009-10-04 08:38:38 -0500 (Sun, 04 Oct 2009) | 1 line
test logging
........
2009-10-04 11:49:41 -03:00
|
|
|
Although certain modules are designed to export only names that follow certain
|
|
|
|
patterns when you use ``import *``, it is still considered bad practise in
|
|
|
|
production code.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
Remember, there is nothing wrong with using ``from Package import
|
|
|
|
specific_submodule``! In fact, this is the recommended notation unless the
|
|
|
|
importing module needs to use submodules with the same name from different
|
|
|
|
packages.
|
|
|
|
|
|
|
|
|
|
|
|
Intra-package References
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
When packages are structured into subpackages (as with the :mod:`sound` package
|
|
|
|
in the example), you can use absolute imports to refer to submodules of siblings
|
|
|
|
packages. For example, if the module :mod:`sound.filters.vocoder` needs to use
|
|
|
|
the :mod:`echo` module in the :mod:`sound.effects` package, it can use ``from
|
|
|
|
sound.effects import echo``.
|
|
|
|
|
2008-05-12 15:05:20 -03:00
|
|
|
You can also write relative imports, with the ``from module import name`` form
|
|
|
|
of import statement. These imports use leading dots to indicate the current and
|
|
|
|
parent packages involved in the relative import. From the :mod:`surround`
|
|
|
|
module for example, you might use::
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
from . import echo
|
|
|
|
from .. import formats
|
|
|
|
from ..filters import equalizer
|
|
|
|
|
2008-05-12 15:05:20 -03:00
|
|
|
Note that relative imports are based on the name of the current module. Since
|
|
|
|
the name of the main module is always ``"__main__"``, modules intended for use
|
|
|
|
as the main module of a Python application must always use absolute imports.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
|
|
|
Packages in Multiple Directories
|
|
|
|
--------------------------------
|
|
|
|
|
|
|
|
Packages support one more special attribute, :attr:`__path__`. This is
|
|
|
|
initialized to be a list containing the name of the directory holding the
|
|
|
|
package's :file:`__init__.py` before the code in that file is executed. This
|
|
|
|
variable can be modified; doing so affects future searches for modules and
|
|
|
|
subpackages contained in the package.
|
|
|
|
|
|
|
|
While this feature is not often needed, it can be used to extend the set of
|
|
|
|
modules found in a package.
|
|
|
|
|
|
|
|
|
|
|
|
.. rubric:: Footnotes
|
|
|
|
|
|
|
|
.. [#] In fact function definitions are also 'statements' that are 'executed'; the
|
2013-04-14 06:47:46 -03:00
|
|
|
execution of a module-level function definition enters the function name in
|
|
|
|
the module's global symbol table.
|
2007-08-15 11:28:22 -03:00
|
|
|
|