diff options
author | R. David Murray <rdmurray@bitdance.com> | 2010-04-26 21:17:14 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2010-04-26 21:17:14 (GMT) |
commit | 3939dcdb72e29aeac43c0c6bcba69e098ed516ee (patch) | |
tree | 07c54da7d72f86513018e84f082ffe4231897d19 /Misc | |
parent | 278d665c6a407ca1c1b26009b5a51f341f64a027 (diff) | |
download | cpython-3939dcdb72e29aeac43c0c6bcba69e098ed516ee.zip cpython-3939dcdb72e29aeac43c0c6bcba69e098ed516ee.tar.gz cpython-3939dcdb72e29aeac43c0c6bcba69e098ed516ee.tar.bz2 |
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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -27,6 +27,9 @@ Core and Builtins Library ------- +- Issue #6656: fix locale.format_string to handle escaped percents + and mappings. + - Issue #2302: Fix a race condition in SocketServer.BaseServer.shutdown, where the method could block indefinitely if called just before the event loop started running. This also fixes the occasional freezes |