diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-24 21:12:32 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-24 21:12:32 (GMT) |
commit | ccd047ea4b92f09a84b67e69deb82ce42e510c4c (patch) | |
tree | 89663a3917f136919b9b491c22ee76c16afd0b83 /Lib/distutils/text_file.py | |
parent | a6f26c1d3495670c02c2ceb1e38ada0d468579f7 (diff) | |
download | cpython-ccd047ea4b92f09a84b67e69deb82ce42e510c4c.zip cpython-ccd047ea4b92f09a84b67e69deb82ce42e510c4c.tar.gz cpython-ccd047ea4b92f09a84b67e69deb82ce42e510c4c.tar.bz2 |
Removed unused imports.
Diffstat (limited to 'Lib/distutils/text_file.py')
-rw-r--r-- | Lib/distutils/text_file.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/text_file.py b/Lib/distutils/text_file.py index 478336f..93abad3 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: |