]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] gh-128696: Add arm64 to the get_platform return val description (GH-128701...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 3 Feb 2025 23:29:16 +0000 (00:29 +0100)
committerGitHub <noreply@github.com>
Mon, 3 Feb 2025 23:29:16 +0000 (00:29 +0100)
gh-128696: Add arm64 to the get_platform return val description (GH-128701)
(cherry picked from commit 553cdc6d6856c1b4539a45eb90d0769f7c629355)

Co-authored-by: RUANG (James Roy) <longjinyii@outlook.com>
Doc/library/sysconfig.rst
Lib/sysconfig.py

index aaccc0431d7647dcc06c10e7004ffe62055635da..9c343e29ff4befad747d982a27cc61a50d1e515b 100644 (file)
@@ -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:
index 517b13acaf68235040fd94a3d390aafddd7d2360..7dd63b935543d61385dba1232979efd0191b577e 100644 (file)
@@ -765,7 +765,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'.