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 aff86f8 commit 1e2d615Copy full SHA for 1e2d615
Lib/distutils/util.py
@@ -38,7 +38,7 @@ def get_platform ():
38
if os.name == 'nt':
39
if 'amd64' in sys.version.lower():
40
return 'win-amd64'
41
- if '(arm)' in sys.version.lower():
+ if 'arm' in sys.version.lower():
42
return 'win-arm'
43
return sys.platform
44
Lib/sysconfig.py
@@ -619,7 +619,7 @@ def get_platform():
619
620
621
622
623
624
625
0 commit comments