Issue #18716: Deprecate the formatter module

This commit is contained in:
Brett Cannon 2013-10-04 11:38:59 -04:00
parent cc5d49e3da
commit 1448ecf470
5 changed files with 19 additions and 8 deletions

View file

@ -19,6 +19,9 @@ 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)
AS_IS = None