File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -640,22 +640,20 @@ def get_platform():
640640
641641 Examples of returned values:
642642
643+
643644 Windows:
644645
645646 - win-amd64 (64-bit Windows on AMD64, aka x86_64, Intel64, and EM64T)
646647 - win-arm64 (64-bit Windows on ARM64, aka AArch64)
647648 - win32 (all others - specifically, sys.platform is returned)
648-
649+
649650 POSIX based OS:
650651
651652 - linux-x86_64
652653 - macosx-15.5-arm64
653- - android-9 -arm64_v8a
654+ - android-24 -arm64_v8a
654655
655- Other non-POSIX platforms:
656-
657- For other non-POSIX platforms, currently just returns :data:`sys.platform`.
658- """
656+ For other non-POSIX platforms, currently just returns :data:`sys.platform`."""
659657 if os .name == 'nt' :
660658 if 'amd64' in sys .version .lower ():
661659 return 'win-amd64'
You can’t perform that action at this time.
0 commit comments