summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2011-11-04 20:21:52 (GMT)
committerPetri Lehtinen <petri@digip.org>2011-11-04 20:22:03 (GMT)
commitc9f38462eecc27a6c5be041df4a5910f6a2ab99f (patch)
treed40391e88d32d1d302b7f86c332845725cd92289 /Misc
parente30c0a1014fb8f7978f608d6c7f430842f685075 (diff)
parent3c85fe07f40a18d9f5733e85b213a6992c5b2ed4 (diff)
downloadcpython-c9f38462eecc27a6c5be041df4a5910f6a2ab99f.zip
cpython-c9f38462eecc27a6c5be041df4a5910f6a2ab99f.tar.gz
cpython-c9f38462eecc27a6c5be041df4a5910f6a2ab99f.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 65c402c..f204ecb 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -768,6 +768,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 23f4259..358a6e3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -350,6 +350,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.