This commit is contained in:
Justine Pelletreau
2022-03-16 15:02:53 +01:00
commit e5adfa2d64
1404 changed files with 270042 additions and 0 deletions

View File

@ -0,0 +1,7 @@
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)