summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2009-04-01 03:42:00 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2009-04-01 03:42:00 (GMT)
commite59482ec9a44a9cf8c5e066c340dc9ed78399712 (patch)
tree759f586e67351e2055cfcccf58f4537ace2cff0c /Misc
parent12e533d7bfd37737a8cf17150ee219f8e3a91b80 (diff)
downloadcpython-e59482ec9a44a9cf8c5e066c340dc9ed78399712.zip
cpython-e59482ec9a44a9cf8c5e066c340dc9ed78399712.tar.gz
cpython-e59482ec9a44a9cf8c5e066c340dc9ed78399712.tar.bz2
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. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS2
-rw-r--r--Misc/NEWS4
2 files changed, 6 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 8ca5b7f..acde815 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -482,6 +482,7 @@ Damien Miller
Chad Miller
Jay T. Miller
Roman Milner
+Andrii V. Mishkovskyi
Dustin J. Mitchell
Dom Mitchell
Doug Moen
@@ -492,6 +493,7 @@ James A Morrison
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 @@ Core and Builtins
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.