Core and Builtins
-----------------
+ - Issue #27487: Warn if a submodule argument to "python -m" or
+ runpy.run_module() is found in sys.modules after parent packages are
+ imported, but before the submodule is executed.
+
+- Issue #27157: Make only type() itself accept the one-argument form.
+ Patch by Eryk Sun and Emanuel Barry.
+
- Issue #27558: Fix a SystemError in the implementation of "raise" statement.
In a brand new thread, raise a RuntimeError since there is no active
exception to reraise. Patch written by Xiang Zhang.