diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2024-10-23 07:50:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-23 07:50:29 (GMT) |
commit | 834ba5aaf21ac7fd123534dae8f9e478ee526aaa (patch) | |
tree | 3e1351b3c1b061fdfd0d382614db89489cccdd14 /Doc/deprecations | |
parent | c75ff2ef8eb71d91b1f92db9c2bc7ff18c582ab1 (diff) | |
download | cpython-834ba5aaf21ac7fd123534dae8f9e478ee526aaa.zip cpython-834ba5aaf21ac7fd123534dae8f9e478ee526aaa.tar.gz cpython-834ba5aaf21ac7fd123534dae8f9e478ee526aaa.tar.bz2 |
gh-58032: Deprecate the argparse.FileType type converter (GH-124664)
Diffstat (limited to 'Doc/deprecations')
-rw-r--r-- | Doc/deprecations/pending-removal-in-future.rst | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/Doc/deprecations/pending-removal-in-future.rst b/Doc/deprecations/pending-removal-in-future.rst index d77fc86..5a4502a 100644 --- a/Doc/deprecations/pending-removal-in-future.rst +++ b/Doc/deprecations/pending-removal-in-future.rst @@ -4,16 +4,6 @@ Pending removal in future versions The following APIs will be removed in the future, 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. - -* :mod:`array`'s ``'u'`` format code (:gh:`57281`) - * :mod:`builtins`: * ``bool(NotImplemented)``. @@ -43,6 +33,17 @@ although there is currently no date scheduled for their removal. as a single positional argument. (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 deprecated and replaced by :data:`calendar.JANUARY` and :data:`calendar.FEBRUARY`. |