We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3805299 commit 56d56e3Copy full SHA for 56d56e3
1 file changed
Lib/sysconfig/__init__.py
@@ -640,22 +640,20 @@ def get_platform():
640
641
Examples of returned values:
642
643
+
644
Windows:
645
646
- win-amd64 (64-bit Windows on AMD64, aka x86_64, Intel64, and EM64T)
647
- win-arm64 (64-bit Windows on ARM64, aka AArch64)
648
- win32 (all others - specifically, sys.platform is returned)
-
649
650
POSIX based OS:
651
652
- linux-x86_64
653
- macosx-15.5-arm64
- - android-9-arm64_v8a
654
+ - android-24-arm64_v8a
655
- Other non-POSIX platforms:
656
657
- For other non-POSIX platforms, currently just returns :data:`sys.platform`.
658
- """
+ For other non-POSIX platforms, currently just returns :data:`sys.platform`."""
659
if os.name == 'nt':
660
if 'amd64' in sys.version.lower():
661
return 'win-amd64'
0 commit comments