Issue #8973: Add __all__ to struct module, so that help(struct) correctly
displays information for the struct.Struct class.
diff --git a/Misc/NEWS b/Misc/NEWS
index cde2905..60a5075 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1299,6 +1299,9 @@
Extension Modules
-----------------
+- Issue #8973: Add __all__ to struct module; this ensures that
+ help(struct) includes documentation for the struct.Struct class.
+
- Issue #3129: Trailing digits in format string are no longer ignored.
For example, "1" or "ilib123" are now invalid formats and cause
``struct.error`` to be raised.