summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2011-11-04 19:35:07 (GMT)
committerPetri Lehtinen <petri@digip.org>2011-11-04 20:21:07 (GMT)
commit3c85fe07f40a18d9f5733e85b213a6992c5b2ed4 (patch)
treec142b9710010953017c497ee9f88e463ccbe54d3 /Misc/NEWS
parent12b66b5217d7cbccbeb918683f6df8ab9ae84c3d (diff)
downloadcpython-3c85fe07f40a18d9f5733e85b213a6992c5b2ed4.zip
cpython-3c85fe07f40a18d9f5733e85b213a6992c5b2ed4.tar.gz
cpython-3c85fe07f40a18d9f5733e85b213a6992c5b2ed4.tar.bz2
Issue #3067: Fix the error raised by locale.setlocale()
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c91c094..7ef1977 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,9 @@ Core and Builtins
Library
-------
+- Issue #3067: locale.setlocale() now raises TypeError if the second
+ argument is an invalid iterable. Initial patch by Jyrki Pulliainen.
+
- Issue #13140: Fix the daemon_threads attribute of ThreadingMixIn.
- Issue #13339: Fix compile error in posixmodule.c due to missing semicolon.