summaryrefslogtreecommitdiffstats
path: root/Misc
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
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')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 5536ac6..6f2c2a1 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -717,6 +717,7 @@ John Popplewell
Amrit Prem
Paul Prescod
Donovan Preston
+Jyrki Pulliainen
Steve Purcell
Fernando Pérez
Eduardo Pérez
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.