From: Alexander Belopolsky Date: Mon, 28 Sep 2015 02:31:45 +0000 (-0400) Subject: Closes issue #23600: Wrong results from tzinfo.fromutc(). X-Git-Tag: v3.5.1rc1~256^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=edc6885b3f6967df017be18a9b935f5599f10e19;p=thirdparty%2FPython%2Fcpython.git Closes issue #23600: Wrong results from tzinfo.fromutc(). --- diff --git a/Lib/test/datetimetester.py b/Lib/test/datetimetester.py index a942d4de81b8..3d50fc15d8b1 100644 --- a/Lib/test/datetimetester.py +++ b/Lib/test/datetimetester.py @@ -180,6 +180,29 @@ class TestTZInfo(unittest.TestCase): self.assertEqual(derived.utcoffset(None), offset) self.assertEqual(derived.tzname(None), oname) + def test_issue23600(self): + DSTDIFF = DSTOFFSET = timedelta(hours=1) + + class UKSummerTime(tzinfo): + """Simple time zone which pretends to always be in summer time, since + that's what shows the failure. + """ + + def utcoffset(self, dt): + return DSTOFFSET + + def dst(self, dt): + return DSTDIFF + + def tzname(self, dt): + return 'UKSummerTime' + + tz = UKSummerTime() + u = datetime(2014, 4, 26, 12, 1, tzinfo=tz) + t = tz.fromutc(u) + self.assertEqual(t - t.utcoffset(), u) + + class TestTimeZone(unittest.TestCase): def setUp(self): diff --git a/Misc/NEWS b/Misc/NEWS index 6793215a310f..63730faa2ef7 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -81,6 +81,9 @@ Core and Builtins Library ------- +- Issue #23600: Default implementation of tzinfo.fromutc() was returning + wrong results in some cases. + - Issue #25203: Failed readline.set_completer_delims() no longer left the module in inconsistent state. diff --git a/Modules/_datetimemodule.c b/Modules/_datetimemodule.c index cabe4edb6a4e..6084ffa2013d 100644 --- a/Modules/_datetimemodule.c +++ b/Modules/_datetimemodule.c @@ -3040,7 +3040,7 @@ tzinfo_fromutc(PyDateTime_TZInfo *self, PyObject *dt) goto Fail; if (dst == Py_None) goto Inconsistent; - if (delta_bool(delta) != 0) { + if (delta_bool((PyDateTime_Delta *)dst) != 0) { PyObject *temp = result; result = add_datetime_timedelta((PyDateTime_DateTime *)result, (PyDateTime_Delta *)dst, 1);