Closes issue #15111: Calling __import__ with a module specified in
fromlist which causes its own ImportError (e.g. the module tries to
import a non-existent module) should have that exception propagate.
diff --git a/Misc/NEWS b/Misc/NEWS
index d8fbc73..5a25f58 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -33,6 +33,10 @@
- Issue #15801: Make sure mappings passed to '%' formatting are actually
subscriptable.
+- Issue #15111: __import__ should let ImportError propagate when a module that
+ is imported as a side-effect of using fromlist tries to import a module
+ that cannot be found.
+
Library
-------