summaryrefslogtreecommitdiffstats
path: root/Lib/platform.py
diff options
context:
space:
mode:
authorLarry Hastings <larry@hastings.org>2012-06-24 11:33:36 (GMT)
committerLarry Hastings <larry@hastings.org>2012-06-24 11:33:36 (GMT)
commit605a62ddb1c19978ee194a40a458f072e3242a31 (patch)
tree68e0896556044c0b2d7e9db9a08fc8e449011f18 /Lib/platform.py
parentf62445ad30145e5e50c5b0ec9d979099b630039f (diff)
downloadcpython-605a62ddb1c19978ee194a40a458f072e3242a31.zip
cpython-605a62ddb1c19978ee194a40a458f072e3242a31.tar.gz
cpython-605a62ddb1c19978ee194a40a458f072e3242a31.tar.bz2
Issue #15118: Change return value of os.uname() and os.times() from
plain tuples to immutable iterable objects with named attributes (structseq objects).
Diffstat (limited to 'Lib/platform.py')
-rwxr-xr-xLib/platform.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/platform.py b/Lib/platform.py
index 4554659..b7dbcca 100755
--- a/Lib/platform.py
+++ b/Lib/platform.py
@@ -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'