summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-10-19 18:54:25 (GMT)
committerGeorg Brandl <georg@python.org>2010-10-19 18:54:25 (GMT)
commit7004bd1a3de06330761d164bae0d82c597bf39cf (patch)
tree4c27a09a59a559026e5f1cf157df2573fbdb9304 /Misc/NEWS
parentf87cc0448158fedad9ba0a1edcec3664d9f90eb4 (diff)
downloadcpython-7004bd1a3de06330761d164bae0d82c597bf39cf.zip
cpython-7004bd1a3de06330761d164bae0d82c597bf39cf.tar.gz
cpython-7004bd1a3de06330761d164bae0d82c597bf39cf.tar.bz2
#10092: Properly reset locale in Locale*Calendar classes. The context manager was buggy because setlocale() returns the *new* locale, not the old. Also add a test for this.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4b92ef6..066c667 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -34,6 +34,8 @@ Core and Builtins
Library
-------
+- Issue #10092: Properly reset locale in calendar.Locale*Calendar classes.
+
- logging: Added _logRecordClass, getLogRecordClass, setLogRecordClass to
increase flexibility of LogRecord creation.