diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2011-11-04 08:29:17 +0100 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2011-11-04 08:29:17 +0100 |
commit | 48d80f163e73acdf1549b8b0aa85aebb80d70d57 (patch) | |
tree | 8d101e4020192acb915dadb5d38627c741e2db05 /Lib/shutil.py | |
parent | 0fd6a35778da1cbfbf1d8bc4cd59af566eab2e90 (diff) | |
download | cpython-48d80f163e73acdf1549b8b0aa85aebb80d70d57.tar.gz |
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 d6b85651a0..468ffcb5b7 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 |