commit | da2c7ebd234fc904f6d6de2191eb5f72e8992c95 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sat Mar 23 22:32:00 2013 -0500 |
committer | Benjamin Peterson <benjamin@python.org> | Sat Mar 23 22:32:00 2013 -0500 |
tree | fe5ea090417c5bb6a82e9ea3a7d1421b5227127b | |
parent | 7e2f197a2bc3d15ff8c504154f48a3c2435c992f [diff] [blame] |
allow any type with __getitem__ to be a mapping for the purposes of % (#15801)
diff --git a/Misc/NEWS b/Misc/NEWS index 8a8ec99..0649bc8 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -6,6 +6,13 @@ *Release date: XXXX-XX-XX* +Core and Builtins +----------------- + +- Issue #15801 (again): With string % formatting, relax the type check for a + mapping such that any type with a __getitem__ can be used on the right hand + side. + Library -------