diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-09-18 14:33:04 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-09-18 14:33:04 (GMT) |
commit | f409c7cd1b8d3c365378252b76a804eab55e412e (patch) | |
tree | 93224ddd13a72d5341458c675422e6d0d9af356f | |
parent | d8f432a98c6bbe143002f45e181b7e5243d1166e (diff) | |
parent | 4b363e270108edb2be306aad3da3140e64637641 (diff) | |
download | cpython-f409c7cd1b8d3c365378252b76a804eab55e412e.zip cpython-f409c7cd1b8d3c365378252b76a804eab55e412e.tar.gz cpython-f409c7cd1b8d3c365378252b76a804eab55e412e.tar.bz2 |
Merge 3.5 (test_email)
-rw-r--r-- | Lib/test/test_email/test_utils.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_email/test_utils.py b/Lib/test/test_email/test_utils.py index 1e9cd63..6dcb3bb 100644 --- a/Lib/test/test_email/test_utils.py +++ b/Lib/test/test_email/test_utils.py @@ -136,6 +136,9 @@ class LocaltimeTests(unittest.TestCase): t1 = utils.localtime(t0) self.assertEqual(t1.tzname(), 'EET') +# Issue #24836: The timezone files are out of date (pre 2011k) +# on Mac OS X Snow Leopard. +@test.support.requires_mac_ver(10, 7) class FormatDateTests(unittest.TestCase): @test.support.run_with_tz('Europe/Minsk') |