]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-34251: Restore msilib.Win64 to preserve compatibility (GH-8510)
authorBerker Peksag <berker.peksag@gmail.com>
Sat, 28 Jul 2018 21:02:56 +0000 (00:02 +0300)
committerZachary Ware <zachary.ware@gmail.com>
Sat, 28 Jul 2018 21:02:56 +0000 (16:02 -0500)
Lib/msilib/__init__.py
Misc/NEWS.d/next/Library/2018-07-28-11-47-10.bpo-34251.q3elQ6.rst [new file with mode: 0644]

index 7ab8bcc52c68df4abe1b7bf64a3049172eca3592..8c5251d9baf81e274ae3b6a0a21413c1586c7b33 100644 (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
diff --git a/Misc/NEWS.d/next/Library/2018-07-28-11-47-10.bpo-34251.q3elQ6.rst b/Misc/NEWS.d/next/Library/2018-07-28-11-47-10.bpo-34251.q3elQ6.rst
new file mode 100644 (file)
index 0000000..098f47e
--- /dev/null
@@ -0,0 +1,2 @@
+Restore ``msilib.Win64`` to preserve backwards compatibility since it's
+already used by :mod:`distutils`' ``bdist_msi`` command.