mirror of https://github.com/python/cpython
Tweaked 'get_platform()' to include the first character of the OS release:
eg. sunos5, linux2, irix5.
This commit is contained in:
parent
7d51034eef
commit
6ce00b4440
|
@ -545,10 +545,8 @@ def get_platform ():
|
|||
i.e. "???" or "???"."""
|
||||
|
||||
if os.name == 'posix':
|
||||
uname = os.uname()
|
||||
OS = uname[0]
|
||||
arch = uname[4]
|
||||
return "%s-%s" % (string.lower (OS), string.lower (arch))
|
||||
(OS, _, rel, _, arch) = os.uname()
|
||||
return "%s%c-%s" % (string.lower (OS), rel[0], string.lower (arch))
|
||||
else:
|
||||
return sys.platform
|
||||
|
||||
|
|
Loading…
Reference in New Issue