summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-09-05 22:40:41 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2010-09-05 22:40:41 (GMT)
commit7e00ef097499e9f900ac61eaf96760c1c6b81e8a (patch)
treec712d3cec9b1a49cfd8ad11282649b35552a64db /Misc
parent0bb502dcac9c687201aa58632e3dcbee1ac1168c (diff)
downloadcpython-7e00ef097499e9f900ac61eaf96760c1c6b81e8a.zip
cpython-7e00ef097499e9f900ac61eaf96760c1c6b81e8a.tar.gz
cpython-7e00ef097499e9f900ac61eaf96760c1c6b81e8a.tar.bz2
Merged revisions 80521 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r80521 | r.david.murray | 2010-04-26 22:45:53 -0400 (Mon, 26 Apr 2010) | 13 lines Merged revisions 80512 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r80512 | r.david.murray | 2010-04-26 17:17:14 -0400 (Mon, 26 Apr 2010) | 7 lines Issue #6656: fix locale.format_string to handle escaped percents and mappings. Refactors format_string. Includes tests for the two problems noted in the issue, but as far as I can see there are no other tests that confirm that format_string conforms to normal % formatting rules. ........ ................
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2ff4ff4..dcec2e9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -105,6 +105,9 @@ C-API
Library
-------
+- Issue #6656: fix locale.format_string to handle escaped percents
+ and mappings.
+
- Issue #1100562: Fix deep-copying of objects derived from the list and
dict types. Patch by Michele Orrù and Björn Lindqvist.