summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2015-09-28 01:56:53 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2015-09-28 01:56:53 (GMT)
commitd19b5042ff9203a050676746d6723566e0a75812 (patch)
tree96689f9404d096604e1171e7b1756c702db303fd
parentace12ee11e27bab1586dc8cfdacea8e69fd6f25d (diff)
parentc58c2cb392479fb88e999ff99404e32b94f93cf0 (diff)
downloadcpython-d19b5042ff9203a050676746d6723566e0a75812.zip
cpython-d19b5042ff9203a050676746d6723566e0a75812.tar.gz
cpython-d19b5042ff9203a050676746d6723566e0a75812.tar.bz2
Closes issue #23600: Wrong results from tzinfo.fromutc().
-rw-r--r--Lib/test/datetimetester.py23
-rw-r--r--Misc/NEWS3
-rw-r--r--Modules/_datetimemodule.c2
3 files changed, 27 insertions, 1 deletions
diff --git a/Lib/test/datetimetester.py b/Lib/test/datetimetester.py
index a6c7421..11deffc 100644
--- a/Lib/test/datetimetester.py
+++ b/Lib/test/datetimetester.py
@@ -192,6 +192,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 a44d5c9..5d68a94 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -146,6 +146,9 @@ Core and Builtins
Library
-------
+- Issue #23600: Default implementation of tzinfo.fromutc() was returning
+ wrong results in some cases.
+
- Issue #23329: Allow the ssl module to be built with older versions of
LibreSSL.
diff --git a/Modules/_datetimemodule.c b/Modules/_datetimemodule.c
index 5289222..94336cf 100644
--- a/Modules/_datetimemodule.c
+++ b/Modules/_datetimemodule.c
@@ -3046,7 +3046,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);