diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-03-27 14:05:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-27 14:05:26 (GMT) |
commit | d6debb24e06152a827769b0cac24c47deccdeac1 (patch) | |
tree | f26655d4333391e344dac8cbf6cf2dc08c18b8b4 /Tools/msi | |
parent | 604e74c6beb2585c81083fa85f0e5a4d46965cbc (diff) | |
download | cpython-d6debb24e06152a827769b0cac24c47deccdeac1.zip cpython-d6debb24e06152a827769b0cac24c47deccdeac1.tar.gz cpython-d6debb24e06152a827769b0cac24c47deccdeac1.tar.bz2 |
bpo-29919: Remove unused imports found by pyflakes (#137)
Make also minor PEP8 coding style fixes on modified imports.
Diffstat (limited to 'Tools/msi')
-rw-r--r-- | Tools/msi/make_zip.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/msi/make_zip.py b/Tools/msi/make_zip.py index 710e4a5..0034f6b 100644 --- a/Tools/msi/make_zip.py +++ b/Tools/msi/make_zip.py @@ -10,7 +10,7 @@ import tempfile from itertools import chain from pathlib import Path from zipfile import ZipFile, ZIP_DEFLATED -import subprocess + TKTCL_RE = re.compile(r'^(_?tk|tcl).+\.(pyd|dll)', re.IGNORECASE) DEBUG_RE = re.compile(r'_d\.(pyd|dll|exe|pdb|lib)$', re.IGNORECASE) |