diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-09-18 14:32:51 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-09-18 14:32:51 (GMT) |
commit | 4b363e270108edb2be306aad3da3140e64637641 (patch) | |
tree | 218952ff0e377f1b65682a2c330244778290d18c /Lib/test/test_email | |
parent | 6df29ada02d22c43a8d439a70b820cb1ceacca42 (diff) | |
parent | 53936474aa2e9057ff9fbb33fb641707e79bc3a2 (diff) | |
download | cpython-4b363e270108edb2be306aad3da3140e64637641.zip cpython-4b363e270108edb2be306aad3da3140e64637641.tar.gz cpython-4b363e270108edb2be306aad3da3140e64637641.tar.bz2 |
Merge 3.4 (test_email)
Diffstat (limited to 'Lib/test/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') |