Issue #22191: Fix warnings.__all__.

Thanks to Jon Poler for the patch.
diff --git a/Lib/warnings.py b/Lib/warnings.py
index a427e35..eeeba65 100644
--- a/Lib/warnings.py
+++ b/Lib/warnings.py
@@ -2,7 +2,8 @@
 
 import sys
 
-__all__ = ["warn", "showwarning", "formatwarning", "filterwarnings",
+__all__ = ["warn", "warn_explicit", "showwarning",
+           "formatwarning", "filterwarnings", "simplefilter",
            "resetwarnings", "catch_warnings"]