Issue #7055: test___all__ now greedily detects all modules which have an
__all__ attribute, rather than using a hardcoded and incomplete list.
diff --git a/Misc/NEWS b/Misc/NEWS
index bdd657c..ddd909f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1452,6 +1452,9 @@
 Tests
 -----
 
+- Issue #7055: test___all__ now greedily detects all modules which have an
+  __all__ attribute, rather than using a hardcoded and incomplete list.
+
 - Issue #7058: Added save/restore for argv and os.environ to runtest_inner
   in regrtest, with warnings if the called test modifies them.