]> granicus.if.org Git - python/commitdiff
bpo-35596: Fix vcruntime140.dll being added to embeddable distro multiple times....
authorSteve Dower <steve.dower@microsoft.com>
Thu, 27 Dec 2018 20:44:25 +0000 (12:44 -0800)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 27 Dec 2018 20:44:25 +0000 (12:44 -0800)
https://bugs.python.org/issue35596

Misc/NEWS.d/next/Windows/2018-12-28-07-25-47.bpo-35596.P9CEY2.rst [new file with mode: 0644]
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 (file)
index 0000000..3ce90f6
--- /dev/null
@@ -0,0 +1 @@
+Fix vcruntime140.dll being added to embeddable distro multiple times.
index 217b2b096e07685254171a0cf80a37bfb41dd05a..7eaf201d532e368859a0330c9a60d7441add9340 100644 (file)
@@ -46,7 +46,7 @@ TCLTK_FILES_ONLY = FileNameSet("turtle.py")
 
 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_*")