mirror of
https://github.com/python/cpython.git
synced 2025-08-22 17:55:18 +00:00
Issue #15118: Change return value of os.uname() and os.times() from
plain tuples to immutable iterable objects with named attributes (structseq objects).
This commit is contained in:
parent
f62445ad30
commit
605a62ddb1
10 changed files with 191 additions and 42 deletions
|
@ -700,7 +700,7 @@ def _mac_ver_xml():
|
|||
pl = plistlib.readPlist(fn)
|
||||
release = pl['ProductVersion']
|
||||
versioninfo=('', '', '')
|
||||
machine = os.uname()[4]
|
||||
machine = os.uname().machine
|
||||
if machine in ('ppc', 'Power Macintosh'):
|
||||
# for compatibility with the gestalt based code
|
||||
machine = 'PowerPC'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue