diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2011-11-02 00:28:17 (GMT) |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2011-11-02 00:28:17 (GMT) |
commit | e2a732e70690324cfbda42524c44dab3fad3eb2f (patch) | |
tree | f05e609bff7f0af3f5c09435ebe43c529d8a357b /Lib | |
parent | 5f4f4c596089921e2a1bd53b01cf673cfdad1397 (diff) | |
download | cpython-e2a732e70690324cfbda42524c44dab3fad3eb2f.zip cpython-e2a732e70690324cfbda42524c44dab3fad3eb2f.tar.gz cpython-e2a732e70690324cfbda42524c44dab3fad3eb2f.tar.bz2 |
Issue #13312: skip the single failing value for now.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_time.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py index 0e89904..819fef3 100644 --- a/Lib/test/test_time.py +++ b/Lib/test/test_time.py @@ -425,7 +425,9 @@ class _Test4dYear(_BaseYearTest): self.assertEqual(self.yearstr(-123456), '-123456') self.assertEqual(self.yearstr(-123456789), str(-123456789)) self.assertEqual(self.yearstr(-1234567890), str(-1234567890)) - self.assertEqual(self.yearstr(TIME_MINYEAR), str(TIME_MINYEAR)) + self.assertEqual(self.yearstr(TIME_MINYEAR + 1), str(TIME_MINYEAR + 1)) + # On some platforms it loses the sign (issue #13312) + # self.assertEqual(self.yearstr(TIME_MINYEAR), str(TIME_MINYEAR)) self.assertRaises(OverflowError, self.yearstr, TIME_MINYEAR - 1) |