blob: 59224e71e50c49e5f9f6f925837597c035a8ab7f (
plain)
1
2
3
4
5
6
7
8
|
def aix_platform(osname, version, release):
try:
import _aix_support
return _aix_support.aix_platform()
except ImportError:
pass
return "{}-{}.{}".format(osname, version, release)
|