summaryrefslogtreecommitdiff
path: root/Doc/reference/import.rst
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2014-11-07 11:29:33 -0500
committerBrett Cannon <brett@python.org>2014-11-07 11:29:33 -0500
commit08ce4c00e57ffffd76e8a8f79812e135d3a0b770 (patch)
tree266a05bc64b7660bfdefed22e890028848f78ac1 /Doc/reference/import.rst
parent733b2c59c1f1461ae219f907d9ea23037e00b811 (diff)
downloadcpython-08ce4c00e57ffffd76e8a8f79812e135d3a0b770.tar.gz
Issue #22242: Try to make some import-related loader details clearer.
Thanks to Jon Poler for pointing this out.
Diffstat (limited to 'Doc/reference/import.rst')
-rw-r--r--Doc/reference/import.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/reference/import.rst b/Doc/reference/import.rst
index e9b7e53247..dbb2e0a671 100644
--- a/Doc/reference/import.rst
+++ b/Doc/reference/import.rst
@@ -459,7 +459,8 @@ import machinery will create the new module itself.
* If loading fails, the loader must remove any modules it has inserted
into :data:`sys.modules`, but it must remove **only** the failing
- module, and only if the loader itself has loaded it explicitly.
+ module(s), and only if the loader itself has loaded the module(s)
+ explicitly.
Module spec
-----------