Since __import__ is not designed for general use, have its docstring point
people towards importlib.import_module().

Closes issue #7397.
diff --git a/Misc/NEWS b/Misc/NEWS
index 4bfd534..1ed5172 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@
 Core and Builtins
 -----------------
 
+- Issue #7397: Mention that importlib.import_module() is probably what someone
+  really wants to be using in __import__'s docstring.
+
 - Issue #8521: Allow CreateKeyEx, OpenKeyEx, and DeleteKeyEx functions
   of winreg to use named arguments.