summaryrefslogtreecommitdiffstats
path: root/Lib/textwrap.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-06-28 15:25:04 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-06-28 15:25:04 (GMT)
commit274271d1ae71dbd1177b54a5def45fed3ecb501f (patch)
tree50020b9d4c3b3922ce72f5c41b61c4fc969d822e /Lib/textwrap.py
parente4a51e6543e18a004735e75344009b832134db6e (diff)
downloadcpython-274271d1ae71dbd1177b54a5def45fed3ecb501f.zip
cpython-274271d1ae71dbd1177b54a5def45fed3ecb501f.tar.gz
cpython-274271d1ae71dbd1177b54a5def45fed3ecb501f.tar.bz2
remove unused imports (closes #12432)
A patch from Vincent Legoll.
Diffstat (limited to 'Lib/textwrap.py')
-rw-r--r--Lib/textwrap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/textwrap.py b/Lib/textwrap.py
index f4886a1..f014cb0 100644
--- a/Lib/textwrap.py
+++ b/Lib/textwrap.py
@@ -7,7 +7,7 @@
__revision__ = "$Id$"
-import string, re
+import re
__all__ = ['TextWrapper', 'wrap', 'fill', 'dedent']