File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 5
5
:synopsis: Generic output formatter and device interface.
6
6
:deprecated:
7
7
8
- .. deprecated-removed :: 3.4 3.6
9
- Due to lack of usage, the formatter module has been deprecated and is slated
10
- for removal in Python 3.6.
8
+ .. deprecated :: 3.4
9
+ Due to lack of usage, the formatter module has been deprecated.
11
10
12
11
13
12
This module supports two interface definitions, each with multiple
Original file line number Diff line number Diff line change 20
20
21
21
import sys
22
22
import warnings
23
- warnings .warn ('the formatter module is deprecated and will be removed in '
24
- 'Python 3.6' , DeprecationWarning , stacklevel = 2 )
23
+ warnings .warn ('the formatter module is deprecated' , DeprecationWarning ,
24
+ stacklevel = 2 )
25
25
26
26
27
27
AS_IS = None
Original file line number Diff line number Diff line change @@ -63,6 +63,9 @@ Core and Builtins
63
63
Library
64
64
-------
65
65
66
+ - Issue #25407: Remove mentions of the formatter module being removed in
67
+ Python 3.6.
68
+
66
69
- Issue #25406: Fixed a bug in C implementation of OrderedDict.move_to_end()
67
70
that caused segmentation fault or hang in iterating after moving several
68
71
items to the start of ordered dict.
You can’t perform that action at this time.
0 commit comments