commit | 113776c41134bd499efe2b404e25446b31b5c48d | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Wed Feb 07 21:40:49 2007 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Wed Feb 07 21:40:49 2007 +0000 |
tree | dfb8307321fb2f8cd09e42c5b85e3383c895b845 | |
parent | 05d59e2df7a780ad56b4e40f16c0a7584457b1cd [diff] [blame] |
Check for a common user error with defaultdict().
diff --git a/Misc/NEWS b/Misc/NEWS index 1f216f7..e628f44 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -103,6 +103,8 @@ Extension Modules ----------------- +- collections.defaultdict() now verifies that the factory function is callable. + - Bug #1486663: don't reject keyword arguments for subclasses of builtin types.