summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2012-06-22 00:34:09 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2012-06-22 00:34:09 (GMT)
commita07548e97bd819884ed1ddcfedb0fcbcbfdc58fe (patch)
tree8b48da4855caf7c49af6246ea74a68ad263a6cd4 /Misc
parent9ed8b4e4cac4f38109c3e08a8bfd19b7f6ad1c88 (diff)
downloadcpython-a07548e97bd819884ed1ddcfedb0fcbcbfdc58fe.zip
cpython-a07548e97bd819884ed1ddcfedb0fcbcbfdc58fe.tar.gz
cpython-a07548e97bd819884ed1ddcfedb0fcbcbfdc58fe.tar.bz2
Issue #14653: email.utils.mktime_tz() no longer relies on system
mktime() when timezone offest is supplied.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e59ed37..789f7f7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -73,6 +73,9 @@ Core and Builtins
Library
-------
+- Issue #14653: email.utils.mktime_tz() no longer relies on system
+ mktime() when timezone offest is supplied.
+
- Fix GzipFile's handling of filenames given as bytes objects.
- Issue #15101: Make pool finalizer avoid joining current thread.