summaryrefslogtreecommitdiff
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-03-01 23:44:09 +0000
committerVictor Stinner <victor.stinner@haypocalc.com>2011-03-01 23:44:09 +0000
commit968654515f5484447d0f28fdaf5c5d7f5495b426 (patch)
treea2b604f270d37572cca02bcae8d1936223945e40 /Misc/NEWS
parent096f1a85f05b478c1e9aabfa23a724d882f65f2a (diff)
downloadcpython-git-968654515f5484447d0f28fdaf5c5d7f5495b426.tar.gz
Issue #10829: Refactor PyUnicode_FromFormat()
* Use the same function to parse the format string in the 3 steps * Fix crashs on invalid format strings
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a92ac704b3..47a4825d74 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3 Alpha 1?
Core and Builtins
-----------------
+- Issue #10829: Refactor PyUnicode_FromFormat(), use the same function to parse
+ the format string in the 3 steps, fix crashs on invalid format strings.
+
- Issue #11246: Fix PyUnicode_FromFormat("%V") to decode the byte string from
UTF-8 (with replace error handler) instead of ISO-8859-1 (in strict mode).
Patch written by Ray Allen.