summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-12-03 20:26:36 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-12-03 20:26:36 (GMT)
commitb1f64e7d292fb0b1830185e7243c0341e28e6899 (patch)
treec0f5834c96438b2c8c0d9c5d94f15748241797ab /Misc
parent657257edb61c7d69a9e73352fdad8f243e1494ab (diff)
parentc7217d7c2210008ba06e9bcb2a14439a451eef71 (diff)
downloadcpython-b1f64e7d292fb0b1830185e7243c0341e28e6899.zip
cpython-b1f64e7d292fb0b1830185e7243c0341e28e6899.tar.gz
cpython-b1f64e7d292fb0b1830185e7243c0341e28e6899.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 c286183..6dae17d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -22,6 +22,9 @@ Core and Builtins
Library
-------
+- Issue #6478: _strptime's regexp cache now is reset after changing timezone
+ with time.tzset().
+
- Issue #14285: When executing a package with the "python -m package" option,
and package initialization fails, a proper traceback is now reported. The
"runpy" module now lets exceptions from package initialization pass back to