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
4
4
The following APIs will be removed in the future,
5
5
although there is currently no date scheduled for their removal.
6
6
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
+
7
18
* :mod: `builtins `:
8
19
9
20
* ``bool(NotImplemented) ``.
@@ -33,17 +44,6 @@ although there is currently no date scheduled for their removal.
33
44
as a single positional argument.
34
45
(Contributed by Serhiy Storchaka in :gh: `109218 `.)
35
46
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
-
47
47
* :mod: `calendar `: ``calendar.January `` and ``calendar.February `` constants are
48
48
deprecated and replaced by :data: `calendar.JANUARY ` and
49
49
:data: `calendar.FEBRUARY `.
Original file line number Diff line number Diff line change @@ -464,10 +464,15 @@ Deprecated
464
464
==========
465
465
466
466
* :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 `.)
471
476
472
477
* :mod: `asyncio `:
473
478
:func: `!asyncio.iscoroutinefunction ` is deprecated
@@ -481,12 +486,6 @@ Deprecated
481
486
as a single positional argument.
482
487
(Contributed by Serhiy Storchaka in :gh: `109218 `.)
483
488
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
-
490
489
* :mod: `multiprocessing ` and :mod: `concurrent.futures `:
491
490
The default start method (see :ref: `multiprocessing-start-methods `) changed
492
491
away from *fork * to *forkserver * on platforms where it was not already
You can’t perform that action at this time.
0 commit comments