summaryrefslogtreecommitdiff
path: root/Lib/test/test_email
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-09-18 16:32:51 +0200
committerVictor Stinner <victor.stinner@gmail.com>2015-09-18 16:32:51 +0200
commit4b363e270108edb2be306aad3da3140e64637641 (patch)
tree218952ff0e377f1b65682a2c330244778290d18c /Lib/test/test_email
parent6df29ada02d22c43a8d439a70b820cb1ceacca42 (diff)
parent53936474aa2e9057ff9fbb33fb641707e79bc3a2 (diff)
downloadcpython-git-4b363e270108edb2be306aad3da3140e64637641.tar.gz
Merge 3.4 (test_email)
Diffstat (limited to 'Lib/test/test_email')
-rw-r--r--Lib/test/test_email/test_utils.py3
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 1e9cd63e52..6dcb3bbe7a 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')