Issue #25407: Drop the mention of the formatter module being removed
authorBrett Cannon <brett@python.org>
Fri, 16 Oct 2015 19:09:33 +0000 (12:09 -0700)
committerBrett Cannon <brett@python.org>
Fri, 16 Oct 2015 19:09:33 +0000 (12:09 -0700)
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.

Doc/library/formatter.rst
Lib/formatter.py
Misc/NEWS

index a515f74f64b0d26b16b1c328d547e58a76b3afa3..8e8e201ae1e79c7704cf8b0c0ada273c770dc011 100644 (file)
@@ -5,9 +5,8 @@
    :synopsis: Generic output formatter and device interface.
    :deprecated:
 
-.. deprecated-removed:: 3.4 3.6
-   Due to lack of usage, the formatter module has been deprecated and is slated
-   for removal in Python 3.6.
+.. deprecated:: 3.4
+   Due to lack of usage, the formatter module has been deprecated.
 
 
 This module supports two interface definitions, each with multiple
index 5e8e2ff377307cdfa297cb8f4618ee6b568b57a2..e2394de8c291952cf960132319d6b59831ea1a18 100644 (file)
@@ -20,8 +20,8 @@ manage and inserting data into the output.
 
 import sys
 import warnings
-warnings.warn('the formatter module is deprecated and will be removed in '
-              'Python 3.6', DeprecationWarning, stacklevel=2)
+warnings.warn('the formatter module is deprecated', DeprecationWarning,
+              stacklevel=2)
 
 
 AS_IS = None
index 232917a4c10a7818241f262bf056f215d88ebe33..3c94e4a8823905591f7780b6e515ce8aef4d9cc7 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -45,6 +45,9 @@ Core and Builtins
 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()
   that caused segmentation fault or hang in iterating after moving several
   items to the start of ordered dict.