summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-12-03 20:21:07 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-12-03 20:21:07 (GMT)
commitc7217d7c2210008ba06e9bcb2a14439a451eef71 (patch)
tree25992ba9030eff679868e9bc05711317cdae7fd4 /Misc
parent7aa690860eceb74332c1edad1b8a7c4956bbdad5 (diff)
downloadcpython-c7217d7c2210008ba06e9bcb2a14439a451eef71.zip
cpython-c7217d7c2210008ba06e9bcb2a14439a451eef71.tar.gz
cpython-c7217d7c2210008ba06e9bcb2a14439a451eef71.tar.bz2
Issue #6478: _strptime's regexp cache now is reset after changing timezone
with time.tzset().
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 076b0b5..7629600 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -115,6 +115,9 @@ Core and Builtins
Library
-------
+- Issue #6478: _strptime's regexp cache now is reset after changing timezone
+ with time.tzset().
+
- Issue #25177: Fixed problem with the mean of very small and very large
numbers. As a side effect, statistics.mean and statistics.variance should
be significantly faster.