summaryrefslogtreecommitdiffstats
path: root/Lib/test/datetimetester.py
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2015-09-28 02:32:15 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2015-09-28 02:32:15 (GMT)
commit365ba8f6c1459cc5a902f3bec264ac07d8487c70 (patch)
tree21cfec1c779a69080a84785c37c4bc2f66480844 /Lib/test/datetimetester.py
parent36aff2db4ae7e113a8fce91b46301bd85e9c2f3b (diff)
downloadcpython-365ba8f6c1459cc5a902f3bec264ac07d8487c70.zip
cpython-365ba8f6c1459cc5a902f3bec264ac07d8487c70.tar.gz
cpython-365ba8f6c1459cc5a902f3bec264ac07d8487c70.tar.bz2
Closes issue #23600: Wrong results from tzinfo.fromutc().
Diffstat (limited to 'Lib/test/datetimetester.py')
-rw-r--r--Lib/test/datetimetester.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/Lib/test/datetimetester.py b/Lib/test/datetimetester.py
index 357fe13..63c3ae8 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):