commit | 23d49d3e7e386bb2b26d5b944fc123f0f21ce0a6 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Tue Aug 28 17:55:35 2012 -0400 |
committer | Benjamin Peterson <benjamin@python.org> | Tue Aug 28 17:55:35 2012 -0400 |
tree | 2505d06c40de0283e39a5628108f72bf0549b7ff | |
parent | 25cf30faf92b8b77c69a0fd4b839ceefbbaccc4f [diff] [blame] |
use the stricter PyMapping_Check (closes #15801)
diff --git a/Misc/NEWS b/Misc/NEWS index 71a858e..54c260c 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -9,6 +9,9 @@ Core and Builtins ----------------- +- Issue #15801: Make sure mappings passed to '%' formatting are actually + subscriptable. + - Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. Patch by Serhiy Storchaka.