commit | 12ebefc9d3b7268d17d4a042767f712c46d03dfe | [log] [tgz] |
---|---|---|
author | Eric V. Smith <eric@trueblade.com> | Mon Jul 18 14:03:41 2011 -0400 |
committer | Eric V. Smith <eric@trueblade.com> | Mon Jul 18 14:03:41 2011 -0400 |
tree | a9e5fce407f2f3c5006e2278d1c18868c9b80bcb | |
parent | b899007268c53f2f169562bd0679fd5d688e185c [diff] [blame] |
Closes #12579. Positional fields with str.format_map() now raise a ValueError instead of SystemError.
diff --git a/Misc/NEWS b/Misc/NEWS index bf33745..f444709 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -10,6 +10,10 @@ 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.