-
Notifications
You must be signed in to change notification settings - Fork 62
Open
Description
- CPU architecture: PowerPC
- Operating System: AIX
- Python version: 3.9.22
platform.machine() outputs a serial number on AIX -> '00C001034C00'
whereas platform.machine() expects the value ppc64 or powerpc
The value 'powerpc' can be accessed as platform.uname()[5]
>>> import platform
>>> platform.machine()
'00C001034C00'
>>> platform.uname()[5]
'powerpc'
>>> platform.system()
'AIX'
>>>
Metadata
Metadata
Assignees
Labels
No labels