Fix #10854. Make use of the new path and name attributes on ImportError
for extension modules on Windows.
diff --git a/Misc/NEWS b/Misc/NEWS
index 874f287..97ee354 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@
Core and Builtins
-----------------
+- Issue #10854: The ImportError raised when an extension module on Windows
+ fails to import now uses the new path and name attributes from
+ Issue #1559549.
+
- Issue #14582: Import directly returns the module as returned by a loader when
possible instead of fetching it from sys.modules.