From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 3 Feb 2025 23:56:23 +0000 (+0100) Subject: [3.13] gh-128696: Add arm64 to the get_platform return val description (GH-128701... X-Git-Tag: v3.13.2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=646bd7958efb52165fd88d3411a323dadd7ae1a0;p=thirdparty%2FPython%2Fcpython.git [3.13] gh-128696: Add arm64 to the get_platform return val description (GH-128701) (#128774) gh-128696: Add arm64 to the get_platform return val description (GH-128701) (cherry picked from commit 553cdc6d6856c1b4539a45eb90d0769f7c629355) Co-authored-by: RUANG (James Roy) --- diff --git a/Doc/library/sysconfig.rst b/Doc/library/sysconfig.rst index 3921908b7c7b..9f018f9c8f0e 100644 --- a/Doc/library/sysconfig.rst +++ b/Doc/library/sysconfig.rst @@ -388,7 +388,8 @@ Other functions Windows will return one of: - - win-amd64 (64bit Windows on AMD64, aka x86_64, Intel64, and EM64T) + - win-amd64 (64-bit Windows on AMD64, aka x86_64, Intel64, and EM64T) + - win-arm64 (64-bit Windows on ARM64, aka AArch64) - win32 (all others - specifically, sys.platform is returned) macOS can return: diff --git a/Lib/sysconfig/__init__.py b/Lib/sysconfig/__init__.py index 43eda00ea92c..7bcb737ff2cc 100644 --- a/Lib/sysconfig/__init__.py +++ b/Lib/sysconfig/__init__.py @@ -594,7 +594,8 @@ def get_platform(): solaris-2.6-sun4u Windows will return one of: - win-amd64 (64bit Windows on AMD64 (aka x86_64, Intel64, EM64T, etc) + win-amd64 (64-bit Windows on AMD64 (aka x86_64, Intel64, EM64T, etc) + win-arm64 (64-bit Windows on ARM64 (aka AArch64) win32 (all others - specifically, sys.platform is returned) For other non-POSIX platforms, currently just returns 'sys.platform'.