diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2018-07-28 21:02:56 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2018-07-28 21:02:56 (GMT) |
commit | 11eb1a94704142385ffc07852739863ced8587d2 (patch) | |
tree | 136fec935ff7c896c6d7938606a255286936277d | |
parent | 1561703a78849ac3511055590d9d1bd2c62a2072 (diff) | |
download | cpython-11eb1a94704142385ffc07852739863ced8587d2.zip cpython-11eb1a94704142385ffc07852739863ced8587d2.tar.gz cpython-11eb1a94704142385ffc07852739863ced8587d2.tar.bz2 |
bpo-34251: Restore msilib.Win64 to preserve compatibility (GH-8510)
-rw-r--r-- | Lib/msilib/__init__.py | 2 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-07-28-11-47-10.bpo-34251.q3elQ6.rst | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Lib/msilib/__init__.py b/Lib/msilib/__init__.py index 7ab8bcc..8c5251d 100644 --- a/Lib/msilib/__init__.py +++ b/Lib/msilib/__init__.py @@ -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 index 0000000..098f47e --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-07-28-11-47-10.bpo-34251.q3elQ6.rst @@ -0,0 +1,2 @@ +Restore ``msilib.Win64`` to preserve backwards compatibility since it's +already used by :mod:`distutils`' ``bdist_msi`` command. |