summaryrefslogtreecommitdiffstats
path: root/Lib/formatter.py
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2014-03-21 14:52:33 (GMT)
committerBrett Cannon <brett@python.org>2014-03-21 14:52:33 (GMT)
commita77d0c36e561c3f56dee1c4b0fdd9451d6f8a894 (patch)
tree9857bb7e775dae53c9e28bbc15491c99c571f125 /Lib/formatter.py
parent9ab748013b00d6873b07c15ce50927104f5ece63 (diff)
downloadcpython-a77d0c36e561c3f56dee1c4b0fdd9451d6f8a894.zip
cpython-a77d0c36e561c3f56dee1c4b0fdd9451d6f8a894.tar.gz
cpython-a77d0c36e561c3f56dee1c4b0fdd9451d6f8a894.tar.bz2
Issue #19165: The formatter module graduates to full deprecation.
Diffstat (limited to 'Lib/formatter.py')
-rw-r--r--Lib/formatter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/formatter.py b/Lib/formatter.py
index d8cca52..769bd6a 100644
--- a/Lib/formatter.py
+++ b/Lib/formatter.py
@@ -21,7 +21,7 @@ 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', PendingDeprecationWarning)
+ 'Python 3.6', DeprecationWarning)
AS_IS = None