diff options
author | Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> | 2024-10-30 00:13:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-30 00:13:11 (GMT) |
commit | d4b6d84cc84029b598fc24b2d0cea543ee63bf84 (patch) | |
tree | b9875918f1f0fecbf7f25b0ac0ae427f190be7bd /Doc/whatsnew | |
parent | 2d37c719ed7c54430257028be6b48a1e2d065973 (diff) | |
download | cpython-d4b6d84cc84029b598fc24b2d0cea543ee63bf84.zip cpython-d4b6d84cc84029b598fc24b2d0cea543ee63bf84.tar.gz cpython-d4b6d84cc84029b598fc24b2d0cea543ee63bf84.tar.bz2 |
gh-58032: Docs: Sort argparse alphabetically (GH-125871)
Sort argparse alphabetically
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.14.rst | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index a6f595c..7f9e310 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -464,10 +464,15 @@ Deprecated ========== * :mod:`argparse`: - Passing the undocumented keyword argument *prefix_chars* to - :meth:`~argparse.ArgumentParser.add_argument_group` is now - deprecated. - (Contributed by Savannah Ostrowski in :gh:`125563`.) + + * Passing the undocumented keyword argument *prefix_chars* to + :meth:`~argparse.ArgumentParser.add_argument_group` is now + 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`: :func:`!asyncio.iscoroutinefunction` is deprecated @@ -481,12 +486,6 @@ Deprecated as a single positional argument. (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`: The default start method (see :ref:`multiprocessing-start-methods`) changed away from *fork* to *forkserver* on platforms where it was not already |