diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_time.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py index 4459f3e..17d4806 100644 --- a/Lib/test/test_time.py +++ b/Lib/test/test_time.py @@ -53,6 +53,9 @@ class TimeTestCase(unittest.TestCase): self.assertRaises(TypeError, time.asctime, 0) def test_tzset(self): + if not hasattr(time, "tzset"): + return # Can't test this; don't want the test suite to fail + from os import environ # Epoch time of midnight Dec 25th 2002. Never DST in northern |