diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index 701ded7d2d7881..4a9a0b77d068b3 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -535,12 +535,6 @@ Other Language Changes relative imports if dots are present before the module name. (Contributed by Jeremiah Gabriel Pascual in :gh:`118216`.) -* :option:`-X importtime <-X>` now accepts value ``2``, which indicates that - an ``importtime`` entry should also be printed if an imported module has - already been loaded. The ``self`` and ``cumulative`` times for such entries - are replaced by the string ``cached``. - (Contributed by Noah Kim in :gh:`118655`.) - New Modules =========== diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index da9b45cd8e58b3..2f8f5090b7b4d6 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -75,6 +75,11 @@ New Features Other Language Changes ====================== +* :option:`-X importtime <-X>` now accepts value ``2``, which indicates that + an ``importtime`` entry should also be printed if an imported module has + already been loaded. The ``self`` and ``cumulative`` times for such entries + are replaced by the string ``cached``. + (Contributed by Noah Kim in :gh:`118655`.) New Modules diff --git a/Misc/NEWS.d/next/Core and Builtins/2024-05-06-14-27-46.gh-issue-102567.weRqDn.rst b/Misc/NEWS.d/next/Core and Builtins/2024-05-06-14-27-46.gh-issue-102567.weRqDn.rst deleted file mode 100644 index 6141a80477aeae..00000000000000 --- a/Misc/NEWS.d/next/Core and Builtins/2024-05-06-14-27-46.gh-issue-102567.weRqDn.rst +++ /dev/null @@ -1,3 +0,0 @@ -:option:`-X importtime <-X>` now accepts value ``2``, which indicates that -an ``importtime`` entry should also be printed if an imported module has -already been loaded.