From: Brett Cannon Date: Fri, 7 Nov 2014 16:29:33 +0000 (-0500) Subject: Issue #22242: Try to make some import-related loader details clearer. X-Git-Tag: v3.5.0a1~506 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d0c4ef175bae537041595bd20a1457b533a0360a;p=python Issue #22242: Try to make some import-related loader details clearer. Thanks to Jon Poler for pointing this out. --- 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 -----------