diff options
author | Brett Cannon <bcannon@gmail.com> | 2009-01-22 18:37:20 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2009-01-22 18:37:20 (GMT) |
commit | 33418c8feb4284cccabd29a505c9d7f6e06fd48f (patch) | |
tree | 00ba5840e30813cb1f3def688418f99e8d70daae /Doc/library | |
parent | 44bf631ad9996004cbd3e0cb03dd94febcba950f (diff) | |
download | cpython-33418c8feb4284cccabd29a505c9d7f6e06fd48f.zip cpython-33418c8feb4284cccabd29a505c9d7f6e06fd48f.tar.gz cpython-33418c8feb4284cccabd29a505c9d7f6e06fd48f.tar.bz2 |
Fix markup for arguments in importlib docs.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/importlib.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index d247f2b..3f33cfb 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -68,10 +68,10 @@ Functions .. function:: import_module(name, package=None) - Import a module. The ``name`` argument specifies what module to + Import a module. The *name* argument specifies what module to import in absolute or relative terms (e.g. either ``pkg.mod`` or ``..mod``). If the name is - specified in relative terms, then the ``package`` argument must be + specified in relative terms, then the *package* argument must be specified to the package which is to act as the anchor for resolving the package name (e.g. ``import_module('..mod', 'pkg.subpkg')`` will import ``pkg.mod``). The specified module will be inserted into |