From: Antoine Pitrou Date: Tue, 4 Jan 2011 22:54:30 +0000 (+0000) Subject: Fix test_time under Windows X-Git-Tag: v3.2rc1~188 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1ec121d0d19b0ab55cead5974d126fb9b0f95938;p=python Fix test_time under Windows --- diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py index f2ce5cb151..6eb0953a48 100644 --- a/Lib/test/test_time.py +++ b/Lib/test/test_time.py @@ -124,7 +124,7 @@ class TimeTestCase(unittest.TestCase): time.asctime(time.gmtime(self.t)) # Max year is only limited by the size of C int. - sizeof_int = sysconfig.get_config_vars('SIZEOF_INT')[0] + sizeof_int = sysconfig.get_config_var('SIZEOF_INT') or 4 bigyear = (1 << 8 * sizeof_int - 1) - 1 asc = time.asctime((bigyear, 6, 1) + (0,)*6) self.assertEqual(asc[-len(str(bigyear)):], str(bigyear))