bpo-34251: Restore msilib.Win64 to preserve compatibility (GH-8510)

This commit is contained in:
Berker Peksag 2018-07-29 00:02:56 +03:00 committed by Zachary Ware
parent 1561703a78
commit 11eb1a9470
2 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,8 @@ import string
import sys
AMD64 = "AMD64" in sys.version
# Keep msilib.Win64 around to preserve backwards compatibility.
Win64 = AMD64
# Partially taken from Wine
datasizemask= 0x00ff

View File

@ -0,0 +1,2 @@
Restore ``msilib.Win64`` to preserve backwards compatibility since it's
already used by :mod:`distutils`' ``bdist_msi`` command.