bpo-34251: Restore msilib.Win64 to preserve compatibility (GH-8510)
(cherry picked from commit 11eb1a9470
)
Co-authored-by: Berker Peksag <berker.peksag@gmail.com>
This commit is contained in:
parent
8764a6ffda
commit
1e98d87961
|
@ -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
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
Restore ``msilib.Win64`` to preserve backwards compatibility since it's
|
||||
already used by :mod:`distutils`' ``bdist_msi`` command.
|
Loading…
Reference in New Issue