diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2011-11-04 07:29:17 (GMT) |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2011-11-04 07:29:17 (GMT) |
commit | 54540ec917a47c39328e87b1f4ddf83adeca2f5c (patch) | |
tree | d4cef1dbff88af3933fd0cb4572d272e77a9b9e7 /Lib/shutil.py | |
parent | c53ae589548e37c4bd86f03294a27667978a51f8 (diff) | |
download | cpython-54540ec917a47c39328e87b1f4ddf83adeca2f5c.zip cpython-54540ec917a47c39328e87b1f4ddf83adeca2f5c.tar.gz cpython-54540ec917a47c39328e87b1f4ddf83adeca2f5c.tar.bz2 |
Remove redundant imports.
Diffstat (limited to 'Lib/shutil.py')
-rw-r--r-- | Lib/shutil.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/shutil.py b/Lib/shutil.py index d6b8565..468ffcb 100644 --- a/Lib/shutil.py +++ b/Lib/shutil.py @@ -15,6 +15,7 @@ import tarfile try: import bz2 + del bz2 _BZ2_SUPPORTED = True except ImportError: _BZ2_SUPPORTED = False |