Issue #26844: Fix imp.find_module() to have the exception related to
type issues be about 'path' instead of 'name'.
Thanks to Lev Maximov for the patch.
diff --git a/Misc/ACKS b/Misc/ACKS
index 27bd691..897b103 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -939,6 +939,7 @@
mattip
Martin Matusiak
Dieter Maurer
+Lev Maximov
Daniel May
Madison May
Lucas Maystre
diff --git a/Misc/NEWS b/Misc/NEWS
index f10544c..6911d1f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -22,6 +22,9 @@
Library
-------
+- Issue #26844: Fix error message for imp.find_module() to refer to 'path'
+ instead of 'name'. Patch by Lev Maximov.
+
- Issue #23804: Fix SSL zero-length recv() calls to not block and not raise
an error about unclean EOF.