From baed27b28c956710388614533f6e853370f61ca8 Mon Sep 17 00:00:00 2001 From: Savannah Ostrowski Date: Fri, 22 Nov 2024 22:11:38 -0800 Subject: [PATCH] Fix refs in whatsnew --- Doc/whatsnew/3.14.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index c0ec367cded88b..c26cfe6c45c65d 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -641,12 +641,12 @@ argparse of :class:`!argparse.BooleanOptionalAction`. They were deprecated since 3.12. -* Calling :meth:`add_argument_group` on an argument group, and calling - :meth:`add_argument_group` or :meth:`add_mutually_exclusive_group` on - a mutually exclusive group have been removed. This nesting was never - supported, did not always work correctly, and existed in the API by - accident through inheritance. This functionality has been deprecated - since Python 3.11. +* Calling :meth:`~argparse.ArgumentParser.add_argument_group` on an argument + group, and calling :meth:`~argparse.ArgumentParser.add_argument_group` or + :meth:`~argparse.ArgumentParser.add_mutually_exclusive_group` on a mutually + exclusive group have been removed. This nesting was never supported, did + not always work correctly, and existed in the API by accident through + inheritance. This functionality has been deprecated since Python 3.11. (Contributed by Savannah Ostrowski in :gh:`127186`.) ast