Files

8 lines
212 B
Python
Raw Permalink Normal View History

2024-08-27 20:33:44 +02:00
def aix_platform(osname, version, release):
try:
import _aix_support
return _aix_support.aix_platform()
except ImportError:
pass
return "%s-%s.%s" % (osname, version, release)