diff options
author | Ned Deily <nad@acm.org> | 2014-06-25 20:36:14 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2014-06-25 20:36:14 (GMT) |
commit | 04cdfa1147d5aadbee190b3aa2c4ccfd2d4a122d (patch) | |
tree | 3f7582d80bbbd7f46f39e78954e2b8e1c4b63359 /Lib/test/test__osx_support.py | |
parent | 975735f729df6b7767556d2d389b560dbc7500ac (diff) | |
download | cpython-04cdfa1147d5aadbee190b3aa2c4ccfd2d4a122d.zip cpython-04cdfa1147d5aadbee190b3aa2c4ccfd2d4a122d.tar.gz cpython-04cdfa1147d5aadbee190b3aa2c4ccfd2d4a122d.tar.bz2 |
Issue #21811: Anticipated fixes to 3.x and 2.7 for OS X 10.10 Yosemite.
Diffstat (limited to 'Lib/test/test__osx_support.py')
-rw-r--r-- | Lib/test/test__osx_support.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test__osx_support.py b/Lib/test/test__osx_support.py index fb159ec..5dcadf7 100644 --- a/Lib/test/test__osx_support.py +++ b/Lib/test/test__osx_support.py @@ -109,7 +109,9 @@ class Test_OSXSupport(unittest.TestCase): def test__supports_universal_builds(self): import platform - self.assertEqual(platform.mac_ver()[0].split('.') >= ['10', '4'], + mac_ver_tuple = tuple(int(i) for i in + platform.mac_ver()[0].split('.')[0:2]) + self.assertEqual(mac_ver_tuple >= (10, 4), _osx_support._supports_universal_builds()) def test__find_appropriate_compiler(self): |