Issue #8013: Fix time.ctime test failure on 32-bit platforms.

This commit is contained in:
Alexander Belopolsky 2011-01-04 17:08:04 +00:00
parent b9588b528a
commit ecebdc7469
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ class TimeTestCase(unittest.TestCase):
self.assertEqual(time.ctime(t), 'Sat Jan 1 00:00:00 2000')
try:
bigval = time.mktime((10000, 1, 10) + (0,)*6)
except ValueError:
except ValueError, OverflowError:
# If mktime fails, ctime will fail too. This may happen
# on some platforms.
pass