Issue #10565:  Iterator ABC should require both __next__ and __iter__.
diff --git a/Misc/NEWS b/Misc/NEWS
index 27c7331..79171a5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -43,6 +43,9 @@
 Library
 -------
 
+- Issue #10565: The collections.Iterator ABC now checks for both
+  __iter__ and __next__.
+
 - Issue #10242: Fixed implementation of unittest.ItemsEqual and gave it
   a new more informative name, unittest.CountEqual.