From: Tim Peters Date: Mon, 3 Apr 2006 23:44:28 +0000 (+0000) Subject: Rev 43597 on the branch purported to merge rev 43578 from the trunk, X-Git-Tag: v2.4.4c1~289 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=93973ffbd58f4884ed8730194b1905e98c61403c;p=thirdparty%2FPython%2Fcpython.git Rev 43597 on the branch purported to merge rev 43578 from the trunk, but neglected to incorporate 43578's changes to Lib/email/test/test_email.py. As a result, all the buildbots have failed test_email on the branch since then. This should repair it. --- diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py index 1360bbe309ba..18f4894a31d0 100644 --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -2110,12 +2110,12 @@ class TestMiscellaneous(TestEmailBase): def test_parsedate_no_dayofweek(self): eq = self.assertEqual eq(Utils.parsedate_tz('25 Feb 2003 13:47:26 -0800'), - (2003, 2, 25, 13, 47, 26, 0, 1, 0, -28800)) + (2003, 2, 25, 13, 47, 26, 0, 1, -1, -28800)) def test_parsedate_compact_no_dayofweek(self): eq = self.assertEqual eq(Utils.parsedate_tz('5 Feb 2003 13:47:26 -0800'), - (2003, 2, 5, 13, 47, 26, 0, 1, 0, -28800)) + (2003, 2, 5, 13, 47, 26, 0, 1, -1, -28800)) def test_parsedate_acceptable_to_time_functions(self): eq = self.assertEqual