diff options
author | Brett Cannon <brett@python.org> | 2015-10-16 19:09:33 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2015-10-16 19:09:33 (GMT) |
commit | 5ad5a7d31f5328c73df523b6ade330d88573717e (patch) | |
tree | 193dc565250ffa57e4c7f6abd0d2316351690bdd /Lib/formatter.py | |
parent | 85d5d902ce17ae6d088f94621d5a657dfe3f1c45 (diff) | |
download | cpython-5ad5a7d31f5328c73df523b6ade330d88573717e.zip cpython-5ad5a7d31f5328c73df523b6ade330d88573717e.tar.gz cpython-5ad5a7d31f5328c73df523b6ade330d88573717e.tar.bz2 |
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.
Diffstat (limited to 'Lib/formatter.py')
-rw-r--r-- | Lib/formatter.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/formatter.py b/Lib/formatter.py index 5e8e2ff..e2394de 100644 --- a/Lib/formatter.py +++ b/Lib/formatter.py @@ -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 |