summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_locale.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/test/test_locale.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/test/test_locale.py')
-rw-r--r--Lib/test/test_locale.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_locale.py b/Lib/test/test_locale.py
index 7fdb6da..51a7bca 100644
--- a/Lib/test/test_locale.py
+++ b/Lib/test/test_locale.py
@@ -11,7 +11,7 @@ def get_enUS_locale():
if sys.platform == 'darwin':
import os
tlocs = ("en_US.UTF-8", "en_US.ISO8859-1", "en_US")
- if int(os.uname()[2].split('.')[0]) < 10:
+ if int(os.uname().release.split('.')[0]) < 10:
# The locale test work fine on OSX 10.6, I (ronaldoussoren)
# haven't had time yet to verify if tests work on OSX 10.5
# (10.4 is known to be bad)