diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-12-21 01:49:00 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-12-21 01:49:00 (GMT) |
commit | 88e2c5d35a9ce74e779bfc5cb38624bef49c695f (patch) | |
tree | c9b8985c220a5d99d1caae8c25c8d654be47bac0 /Lib/distutils/text_file.py | |
parent | 8b9361a26df8b336d08de6a59387c56be520591f (diff) | |
download | cpython-88e2c5d35a9ce74e779bfc5cb38624bef49c695f.zip cpython-88e2c5d35a9ce74e779bfc5cb38624bef49c695f.tar.gz cpython-88e2c5d35a9ce74e779bfc5cb38624bef49c695f.tar.bz2 |
Merged revisions 76956 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r76956 | tarek.ziade | 2009-12-21 02:22:46 +0100 (Mon, 21 Dec 2009) | 1 line
massive import cleaning in Distutils
........
Diffstat (limited to 'Lib/distutils/text_file.py')
-rw-r--r-- | Lib/distutils/text_file.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/text_file.py b/Lib/distutils/text_file.py index 97459fb..53c8561 100644 --- a/Lib/distutils/text_file.py +++ b/Lib/distutils/text_file.py @@ -6,8 +6,8 @@ lines, and joining lines with backslashes.""" __revision__ = "$Id$" -import sys, os, io - +import sys +import io class TextFile: """Provides a file-like object that takes care of all the things you |