[Python-checkins] bpo-35596: Fix vcruntime140.dll being added to embeddable distro multiple times. (GH-11329)

Miss Islington (bot) webhook-mailer at python.org
Thu Dec 27 20:04:12 EST 2018


https://github.com/python/cpython/commit/bbf695441af9def8a121ff3e245415d9fc0bab9a
commit: bbf695441af9def8a121ff3e245415d9fc0bab9a
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-12-27T17:04:07-08:00
summary:

bpo-35596: Fix vcruntime140.dll being added to embeddable distro multiple times. (GH-11329)


https://bugs.python.org/issue35596
(cherry picked from commit 59c2aa25ffc864bf11bf3b3973828f00e268a992)

Co-authored-by: Steve Dower <steve.dower at microsoft.com>

files:
A Misc/NEWS.d/next/Windows/2018-12-28-07-25-47.bpo-35596.P9CEY2.rst
M PC/layout/main.py

diff --git a/Misc/NEWS.d/next/Windows/2018-12-28-07-25-47.bpo-35596.P9CEY2.rst b/Misc/NEWS.d/next/Windows/2018-12-28-07-25-47.bpo-35596.P9CEY2.rst
new file mode 100644
index 000000000000..3ce90f6065c9
--- /dev/null
+++ b/Misc/NEWS.d/next/Windows/2018-12-28-07-25-47.bpo-35596.P9CEY2.rst
@@ -0,0 +1 @@
+Fix vcruntime140.dll being added to embeddable distro multiple times.
diff --git a/PC/layout/main.py b/PC/layout/main.py
index 217b2b096e07..7eaf201d532e 100644
--- a/PC/layout/main.py
+++ b/PC/layout/main.py
@@ -46,7 +46,7 @@
 
 VENV_DIRS_ONLY = FileNameSet("venv", "ensurepip")
 
-EXCLUDE_FROM_PYDS = FileStemSet("python*", "pyshellext")
+EXCLUDE_FROM_PYDS = FileStemSet("python*", "pyshellext", "vcruntime*")
 EXCLUDE_FROM_LIB = FileNameSet("*.pyc", "__pycache__", "*.pickle")
 EXCLUDE_FROM_PACKAGED_LIB = FileNameSet("readme.txt")
 EXCLUDE_FROM_COMPILE = FileNameSet("badsyntax_*", "bad_*")



More information about the Python-checkins mailing list