Skip to content

Port for AIX on PowerPC #221

@mehendarkarprajwal

Description

@mehendarkarprajwal
  • 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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions