diff options
author | Paul Monson <paulmon@users.noreply.github.com> | 2019-06-12 10:16:49 -0700 |
---|---|---|
committer | Steve Dower <steve.dower@python.org> | 2019-06-12 10:16:49 -0700 |
commit | daf62627518ad97ce66a48c49496aa0573cf0731 (patch) | |
tree | 463690188a1d1f87ea5b9423e2fdfcab069302a2 /Lib/sysconfig.py | |
parent | 5287022eeeb3c017d49fc8580b52e18377bf23f3 (diff) | |
download | cpython-daf62627518ad97ce66a48c49496aa0573cf0731.tar.gz cpython-daf62627518ad97ce66a48c49496aa0573cf0731.zip |
bpo-37201: fix test_distutils failures for Windows ARM64 (GH-13902)
Diffstat (limited to 'Lib/sysconfig.py')
-rw-r--r-- | Lib/sysconfig.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py index 8446c8deb24..e76e6927cb1 100644 --- a/Lib/sysconfig.py +++ b/Lib/sysconfig.py @@ -628,6 +628,8 @@ def get_platform(): return 'win-amd64' if '(arm)' in sys.version.lower(): return 'win-arm32' + if '(arm64)' in sys.version.lower(): + return 'win-arm64' return sys.platform if os.name != "posix" or not hasattr(os, 'uname'): |