summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2013-10-04 15:38:59 (GMT)
committerBrett Cannon <brett@python.org>2013-10-04 15:38:59 (GMT)
commit1448ecf470013cee63c0682f615c5256928dc6b0 (patch)
treebd8650fbd71fe3aee320e8be61f87b78893c3142 /Lib
parentcc5d49e3daeeef7809dcc93a22f0e5185961185f (diff)
downloadcpython-1448ecf470013cee63c0682f615c5256928dc6b0.zip
cpython-1448ecf470013cee63c0682f615c5256928dc6b0.tar.gz
cpython-1448ecf470013cee63c0682f615c5256928dc6b0.tar.bz2
Issue #18716: Deprecate the formatter module
Diffstat (limited to 'Lib')
-rw-r--r--Lib/formatter.py3
-rwxr-xr-xLib/pydoc.py9
2 files changed, 7 insertions, 5 deletions
diff --git a/Lib/formatter.py b/Lib/formatter.py
index 60e60f1..d8cca52 100644
--- a/Lib/formatter.py
+++ b/Lib/formatter.py
@@ -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
diff --git a/Lib/pydoc.py b/Lib/pydoc.py
index bc64407..174311c 100755
--- a/Lib/pydoc.py
+++ b/Lib/pydoc.py
@@ -1915,11 +1915,10 @@ module "pydoc_data.topics" could not be found.
if more_xrefs:
xrefs = (xrefs or '') + ' ' + more_xrefs
if xrefs:
- import formatter
- buffer = io.StringIO()
- formatter.DumbWriter(buffer).send_flowing_data(
- 'Related help topics: ' + ', '.join(xrefs.split()) + '\n')
- self.output.write('\n%s\n' % buffer.getvalue())
+ import textwrap
+ text = 'Related help topics: ' + ', '.join(xrefs.split()) + '\n'
+ wrapped_text = textwrap.wrap(text, 72)
+ self.output.write('\n%s\n' % ''.join(wrapped_text))
def _gettopic(self, topic, more_xrefs=''):
"""Return unbuffered tuple of (topic, xrefs).