diff options
author | Eric V. Smith <eric@trueblade.com> | 2011-07-18 18:03:41 (GMT) |
---|---|---|
committer | Eric V. Smith <eric@trueblade.com> | 2011-07-18 18:03:41 (GMT) |
commit | 12ebefc9d3b7268d17d4a042767f712c46d03dfe (patch) | |
tree | a9e5fce407f2f3c5006e2278d1c18868c9b80bcb /Misc/NEWS | |
parent | b899007268c53f2f169562bd0679fd5d688e185c (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |