Merged revisions 70936 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70936 | r.david.murray | 2009-03-31 23:21:43 -0400 (Tue, 31 Mar 2009) | 4 lines
Fix issue 2522. locale.format now checks that it is passed
exactly one pattern, which avoids mysterious errors where it
had seemed to fail to do localization.
........
diff --git a/Misc/ACKS b/Misc/ACKS
index 8ca5b7f..acde815 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -482,6 +482,7 @@
Chad Miller
Jay T. Miller
Roman Milner
+Andrii V. Mishkovskyi
Dustin J. Mitchell
Dom Mitchell
Doug Moen
@@ -492,6 +493,7 @@
Sjoerd Mullender
Sape Mullender
Michael Muller
+R. David Murray
Piotr Meyer
John Nagle
Takahiro Nakayama
diff --git a/Misc/NEWS b/Misc/NEWS
index ee96d22..7f0808d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -284,6 +284,10 @@
Library
-------
+- Issue #2522: locale.format now checks its first argument to ensure it has
+ been passed only one pattern, avoiding mysterious errors where it appeared
+ that it was failing to do localization.
+
- Issue #5583: Added optional Extensions in Distutils. Initial patch by Georg
Brandl.