summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2010-11-04 17:06:58 (GMT)
committerEric Smith <eric@trueblade.com>2010-11-04 17:06:58 (GMT)
commit27bbca6f79690472c7beff8020ff331b14450b77 (patch)
tree3b6ea39069caf2f197656092c45e9cba0b384b85 /Misc
parent2397dd58b70986db898f689fe7a1597cdd51f29f (diff)
downloadcpython-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/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2b81371..39c3bf0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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