gh-58032: Docs: Sort argparse alphabetically (GH-125871)

Sort argparse alphabetically
This commit is contained in:
Hugo van Kemenade 2024-10-30 02:13:11 +02:00 committed by GitHub
parent 2d37c719ed
commit d4b6d84cc8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 20 additions and 21 deletions

View File

@ -4,6 +4,17 @@ Pending removal in future versions
The following APIs will be removed in the future, The following APIs will be removed in the future,
although there is currently no date scheduled for their removal. although there is currently no date scheduled for their removal.
* :mod:`argparse`:
* Nesting argument groups and nesting mutually exclusive
groups are deprecated.
* Passing the undocumented keyword argument *prefix_chars* to
:meth:`~argparse.ArgumentParser.add_argument_group` is now
deprecated.
* The :class:`argparse.FileType` type converter is deprecated.
* :mod:`array`'s ``'u'`` format code (:gh:`57281`)
* :mod:`builtins`: * :mod:`builtins`:
* ``bool(NotImplemented)``. * ``bool(NotImplemented)``.
@ -33,17 +44,6 @@ although there is currently no date scheduled for their removal.
as a single positional argument. as a single positional argument.
(Contributed by Serhiy Storchaka in :gh:`109218`.) (Contributed by Serhiy Storchaka in :gh:`109218`.)
* :mod:`argparse`:
* Nesting argument groups and nesting mutually exclusive
groups are deprecated.
* Passing the undocumented keyword argument *prefix_chars* to
:meth:`~argparse.ArgumentParser.add_argument_group` is now
deprecated.
* The :class:`argparse.FileType` type converter is deprecated.
* :mod:`array`'s ``'u'`` format code (:gh:`57281`)
* :mod:`calendar`: ``calendar.January`` and ``calendar.February`` constants are * :mod:`calendar`: ``calendar.January`` and ``calendar.February`` constants are
deprecated and replaced by :data:`calendar.JANUARY` and deprecated and replaced by :data:`calendar.JANUARY` and
:data:`calendar.FEBRUARY`. :data:`calendar.FEBRUARY`.

View File

@ -464,10 +464,15 @@ Deprecated
========== ==========
* :mod:`argparse`: * :mod:`argparse`:
Passing the undocumented keyword argument *prefix_chars* to
:meth:`~argparse.ArgumentParser.add_argument_group` is now * Passing the undocumented keyword argument *prefix_chars* to
deprecated. :meth:`~argparse.ArgumentParser.add_argument_group` is now
(Contributed by Savannah Ostrowski in :gh:`125563`.) deprecated.
(Contributed by Savannah Ostrowski in :gh:`125563`.)
* Deprecated the :class:`argparse.FileType` type converter.
Anything with resource management should be done downstream after the
arguments are parsed.
(Contributed by Serhiy Storchaka in :gh:`58032`.)
* :mod:`asyncio`: * :mod:`asyncio`:
:func:`!asyncio.iscoroutinefunction` is deprecated :func:`!asyncio.iscoroutinefunction` is deprecated
@ -481,12 +486,6 @@ Deprecated
as a single positional argument. as a single positional argument.
(Contributed by Serhiy Storchaka in :gh:`109218`.) (Contributed by Serhiy Storchaka in :gh:`109218`.)
* :mod:`argparse`:
Deprecated the :class:`argparse.FileType` type converter.
Anything with resource management should be done downstream after the
arguments are parsed.
(Contributed by Serhiy Storchaka in :gh:`58032`.)
* :mod:`multiprocessing` and :mod:`concurrent.futures`: * :mod:`multiprocessing` and :mod:`concurrent.futures`:
The default start method (see :ref:`multiprocessing-start-methods`) changed The default start method (see :ref:`multiprocessing-start-methods`) changed
away from *fork* to *forkserver* on platforms where it was not already away from *fork* to *forkserver* on platforms where it was not already