diff options
author | Georg Brandl <georg@python.org> | 2007-10-21 10:24:20 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-10-21 10:24:20 (GMT) |
commit | 63fa16832617bfad010e3e70e7f10f713afd7593 (patch) | |
tree | 2f24ea291751a34d0b556833b5a1c3c353fb23a8 /Doc/library/functions.rst | |
parent | fa6179701c0dd7f2ecc21fe0ff6204a4e865094f (diff) | |
download | cpython-63fa16832617bfad010e3e70e7f10f713afd7593.zip cpython-63fa16832617bfad010e3e70e7f10f713afd7593.tar.gz cpython-63fa16832617bfad010e3e70e7f10f713afd7593.tar.bz2 |
Unify "byte code" to "bytecode". Also sprinkle :term: markup for it.
Diffstat (limited to 'Doc/library/functions.rst')
-rw-r--r-- | Doc/library/functions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index bfa9bc4..0d380ea 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -43,7 +43,7 @@ available. They are listed here in alphabetical order. top-level package (the name up till the first dot) is returned, *not* the module named by *name*. However, when a non-empty *fromlist* argument is given, the module named by *name* is returned. This is done for - compatibility with the bytecode generated for the different kinds of import + compatibility with the :term:`bytecode` generated for the different kinds of import statement; when using ``import spam.ham.eggs``, the top-level package :mod:`spam` must be placed in the importing namespace, but when using ``from spam.ham import eggs``, the ``spam.ham`` subpackage must be used to find the |