diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2016-09-10 00:59:49 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2016-09-10 00:59:49 (GMT) |
commit | c4b53afce491142b80b228a21a05de5dcfd8d36f (patch) | |
tree | 4fd78ef4e4fcabc46bbff33825cf7ffba4c64e58 /Tools/msi | |
parent | b44acebc7bdde44dc1f952a8fa498a155a35e509 (diff) | |
download | cpython-c4b53afce491142b80b228a21a05de5dcfd8d36f.zip cpython-c4b53afce491142b80b228a21a05de5dcfd8d36f.tar.gz cpython-c4b53afce491142b80b228a21a05de5dcfd8d36f.tar.bz2 |
Issue #28046: Remove platform-specific directories from sys.path
Diffstat (limited to 'Tools/msi')
-rw-r--r-- | Tools/msi/make_zip.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Tools/msi/make_zip.py b/Tools/msi/make_zip.py index 6c43256..4e17740 100644 --- a/Tools/msi/make_zip.py +++ b/Tools/msi/make_zip.py @@ -67,8 +67,6 @@ def include_in_lib(p): if p.is_dir(): if name in EXCLUDE_FROM_LIBRARY: return False - if name.startswith('plat-'): - return False if name == 'test' and p.parts[-2].lower() == 'lib': return False if name in {'test', 'tests'} and p.parts[-3].lower() == 'lib': |