summaryrefslogtreecommitdiff
path: root/Lib/test/test_logging.py
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2012-07-03 21:36:36 +0100
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2012-07-03 21:36:36 +0100
commit36ba48123734518cb77c11087728507700e34f93 (patch)
treebbaba6db8d31639ccad3b8594f4f20dd8fb097c6 /Lib/test/test_logging.py
parent3cca9512965ad307f79fe4253306d6e35a77832b (diff)
downloadcpython-36ba48123734518cb77c11087728507700e34f93.tar.gz
Closes #14902: Fixed timezone conversion of a date/time in the past. Thanks to Yuriy Syrovetskiy for the report and Juancarlo A?ez for the patch on which this fix is based.
Diffstat (limited to 'Lib/test/test_logging.py')
-rw-r--r--Lib/test/test_logging.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py
index 075b839b95..cb908fb460 100644
--- a/Lib/test/test_logging.py
+++ b/Lib/test/test_logging.py
@@ -2899,8 +2899,10 @@ class FormatterTest(unittest.TestCase):
def test_time(self):
r = self.get_record()
- dt = datetime.datetime(1993,4,21,8,3,0,0,utc)
- r.created = time.mktime(dt.timetuple()) - time.timezone
+ dt = datetime.datetime(1993, 4, 21, 8, 3, 0, 0, utc)
+ # We use None to indicate we want the local timezone
+ # We're essentially converting a UTC time to local time
+ r.created = time.mktime(dt.astimezone(None).timetuple())
r.msecs = 123
f = logging.Formatter('%(asctime)s %(message)s')
f.converter = time.gmtime