summaryrefslogtreecommitdiff
path: root/Lib/distutils/text_file.py
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-07-15 16:13:05 +0300
committerBerker Peksag <berker.peksag@gmail.com>2016-07-15 16:13:05 +0300
commiteefb633becc8ba6ae7d30c04aaa01a5740b92cbb (patch)
tree6a8d976e7b8f8426f64f6b1aa848b24363e2490a /Lib/distutils/text_file.py
parent771fbd629810cb7dc48e10cc7d687b313c622fbf (diff)
parente30c0dfb84728e8c3f9e2f695b64071e53e1811b (diff)
downloadcpython-eefb633becc8ba6ae7d30c04aaa01a5740b92cbb.tar.gz
Issue #27518: Merge from 3.5
Diffstat (limited to 'Lib/distutils/text_file.py')
-rw-r--r--Lib/distutils/text_file.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/text_file.py b/Lib/distutils/text_file.py
index 478336f0d2..93abad38f4 100644
--- a/Lib/distutils/text_file.py
+++ b/Lib/distutils/text_file.py
@@ -4,7 +4,7 @@ provides the TextFile class, which gives an interface to text files
that (optionally) takes care of stripping comments, ignoring blank
lines, and joining lines with backslashes."""
-import sys, os, io
+import sys, io
class TextFile: