File tree Expand file tree Collapse file tree 2 files changed +20
-21
lines changed Expand file tree Collapse file tree 2 files changed +20
-21
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,17 @@ Pending removal in future versions
44The following APIs will be removed in the future,
55although there is currently no date scheduled for their removal.
66
7+ * :mod: `argparse `:
8+
9+ * Nesting argument groups and nesting mutually exclusive
10+ groups are deprecated.
11+ * Passing the undocumented keyword argument *prefix_chars * to
12+ :meth: `~argparse.ArgumentParser.add_argument_group ` is now
13+ deprecated.
14+ * The :class: `argparse.FileType ` type converter is deprecated.
15+
16+ * :mod: `array `'s ``'u' `` format code (:gh: `57281 `)
17+
718* :mod: `builtins `:
819
920 * ``bool(NotImplemented) ``.
@@ -33,17 +44,6 @@ although there is currently no date scheduled for their removal.
3344 as a single positional argument.
3445 (Contributed by Serhiy Storchaka in :gh: `109218 `.)
3546
36- * :mod: `argparse `:
37-
38- * Nesting argument groups and nesting mutually exclusive
39- groups are deprecated.
40- * Passing the undocumented keyword argument *prefix_chars * to
41- :meth: `~argparse.ArgumentParser.add_argument_group ` is now
42- deprecated.
43- * The :class: `argparse.FileType ` type converter is deprecated.
44-
45- * :mod: `array `'s ``'u' `` format code (:gh: `57281 `)
46-
4747* :mod: `calendar `: ``calendar.January `` and ``calendar.February `` constants are
4848 deprecated and replaced by :data: `calendar.JANUARY ` and
4949 :data: `calendar.FEBRUARY `.
Original file line number Diff line number Diff line change @@ -464,10 +464,15 @@ Deprecated
464464==========
465465
466466* :mod: `argparse `:
467- Passing the undocumented keyword argument *prefix_chars * to
468- :meth: `~argparse.ArgumentParser.add_argument_group ` is now
469- deprecated.
470- (Contributed by Savannah Ostrowski in :gh: `125563 `.)
467+
468+ * Passing the undocumented keyword argument *prefix_chars * to
469+ :meth: `~argparse.ArgumentParser.add_argument_group ` is now
470+ deprecated.
471+ (Contributed by Savannah Ostrowski in :gh: `125563 `.)
472+ * Deprecated the :class: `argparse.FileType ` type converter.
473+ Anything with resource management should be done downstream after the
474+ arguments are parsed.
475+ (Contributed by Serhiy Storchaka in :gh: `58032 `.)
471476
472477* :mod: `asyncio `:
473478 :func: `!asyncio.iscoroutinefunction ` is deprecated
@@ -481,12 +486,6 @@ Deprecated
481486 as a single positional argument.
482487 (Contributed by Serhiy Storchaka in :gh: `109218 `.)
483488
484- * :mod: `argparse `:
485- Deprecated the :class: `argparse.FileType ` type converter.
486- Anything with resource management should be done downstream after the
487- arguments are parsed.
488- (Contributed by Serhiy Storchaka in :gh: `58032 `.)
489-
490489* :mod: `multiprocessing ` and :mod: `concurrent.futures `:
491490 The default start method (see :ref: `multiprocessing-start-methods `) changed
492491 away from *fork * to *forkserver * on platforms where it was not already
You can’t perform that action at this time.
0 commit comments