diff options
author | Brian Curtin <brian@python.org> | 2012-12-23 22:53:21 (GMT) |
---|---|---|
committer | Brian Curtin <brian@python.org> | 2012-12-23 22:53:21 (GMT) |
commit | 445ad997ab7fd5ad8dd77250bb17c82ad40c1f1f (patch) | |
tree | 7bc829a888aa76693fe0c3431d8984fb1c2bae5d /Tools | |
parent | 77377574dcecac2d5936f2418e36cd9de4d90247 (diff) | |
download | cpython-445ad997ab7fd5ad8dd77250bb17c82ad40c1f1f.zip cpython-445ad997ab7fd5ad8dd77250bb17c82ad40c1f1f.tar.gz cpython-445ad997ab7fd5ad8dd77250bb17c82ad40c1f1f.tar.bz2 |
Fix #14470. Remove w9xpopen per PEP 11.
As stated in PEP 11, 3.4 removes code on Windows platforms where
COMSPEC points to command.com. The w9xpopen project in Visual Studio
was added to support that case, and there was a special case in subprocess
to cover that situation. This change removes the w9xpopen project from
the Visual Studio solution and removes any references to the w9xpopen
executable.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/msi.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index cd1c60b..fca43e2 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -956,8 +956,6 @@ def add_files(db): # Add all executables, icons, text files into the TARGETDIR component root = PyDirectory(db, cab, None, srcdir, "TARGETDIR", "SourceDir") default_feature.set_current() - if not msilib.Win64: - root.add_file("%s/w9xpopen.exe" % PCBUILD) root.add_file("README.txt", src="README") root.add_file("NEWS.txt", src="Misc/NEWS") generate_license() |