summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorEric V. Smith <eric@trueblade.com>2011-07-18 18:03:41 (GMT)
committerEric V. Smith <eric@trueblade.com>2011-07-18 18:03:41 (GMT)
commit12ebefc9d3b7268d17d4a042767f712c46d03dfe (patch)
treea9e5fce407f2f3c5006e2278d1c18868c9b80bcb /Misc/NEWS
parentb899007268c53f2f169562bd0679fd5d688e185c (diff)
downloadcpython-12ebefc9d3b7268d17d4a042767f712c46d03dfe.zip
cpython-12ebefc9d3b7268d17d4a042767f712c46d03dfe.tar.gz
cpython-12ebefc9d3b7268d17d4a042767f712c46d03dfe.tar.bz2
Closes #12579. Positional fields with str.format_map() now raise a ValueError instead of SystemError.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bf33745..f444709 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.2.2?
Core and Builtins
-----------------
+- Issue #12579: str.format_map() now raises a ValueError if used on a
+ format string that contains positional fields. Initial patch by
+ Julian Berman.
+
- Issue #11627: Fix segfault when __new__ on a exception returns a non-exception
class.