diff options
author | Eric Smith <eric@trueblade.com> | 2010-11-04 17:06:58 (GMT) |
---|---|---|
committer | Eric Smith <eric@trueblade.com> | 2010-11-04 17:06:58 (GMT) |
commit | 27bbca6f79690472c7beff8020ff331b14450b77 (patch) | |
tree | 3b6ea39069caf2f197656092c45e9cba0b384b85 /Misc | |
parent | 2397dd58b70986db898f689fe7a1597cdd51f29f (diff) | |
download | cpython-27bbca6f79690472c7beff8020ff331b14450b77.zip cpython-27bbca6f79690472c7beff8020ff331b14450b77.tar.gz cpython-27bbca6f79690472c7beff8020ff331b14450b77.tar.bz2 |
Issue #6081: Add str.format_map. str.format_map(mapping) is similar to str.format(**mapping), except mapping does not get converted to a dict.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -10,6 +10,8 @@ What's New in Python 3.2 Beta 1? Core and Builtins ----------------- +- Issue #6081: Add str.format_map, similar to str.format(**mapping). + - If FileIO.__init__ fails, close the file descriptor. - Issue #10221: dict.pop(k) now has a key error message that includes the |