Commit 5ad5a7d3 authored by Brett Cannon's avatar Brett Cannon

Issue #25407: Drop the mention of the formatter module being removed

in Python 3.6.

The new PEP 4 policy of any module existing in both 2.7 and 3.5
applies here, hence the module will be with us for a bit longer.
parent 85d5d902
...@@ -5,9 +5,8 @@ ...@@ -5,9 +5,8 @@
:synopsis: Generic output formatter and device interface. :synopsis: Generic output formatter and device interface.
:deprecated: :deprecated:
.. deprecated-removed:: 3.4 3.6 .. deprecated:: 3.4
Due to lack of usage, the formatter module has been deprecated and is slated Due to lack of usage, the formatter module has been deprecated.
for removal in Python 3.6.
This module supports two interface definitions, each with multiple This module supports two interface definitions, each with multiple
......
...@@ -20,8 +20,8 @@ manage and inserting data into the output. ...@@ -20,8 +20,8 @@ manage and inserting data into the output.
import sys import sys
import warnings import warnings
warnings.warn('the formatter module is deprecated and will be removed in ' warnings.warn('the formatter module is deprecated', DeprecationWarning,
'Python 3.6', DeprecationWarning, stacklevel=2) stacklevel=2)
AS_IS = None AS_IS = None
......
...@@ -45,6 +45,9 @@ Core and Builtins ...@@ -45,6 +45,9 @@ Core and Builtins
Library Library
------- -------
- Issue #25407: Remove mentions of the formatter module being removed in
Python 3.6.
- Issue #25406: Fixed a bug in C implementation of OrderedDict.move_to_end() - Issue #25406: Fixed a bug in C implementation of OrderedDict.move_to_end()
that caused segmentation fault or hang in iterating after moving several that caused segmentation fault or hang in iterating after moving several
items to the start of ordered dict. items to the start of ordered dict.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment