commit | 21191f4f0c7f519d8b9fbb70c8c832f9e06fb243 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Thu Feb 01 21:01:21 2007 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Thu Feb 01 21:01:21 2007 +0000 |
tree | e8e1b1555e1f9e2a68a841f995fd5f8c81dc8a0b | |
parent | cd7a78e0a4130674b814934a9d77c92d9cbbf9be [diff] [blame] |
Bug #1648179: set.update() not recognizing __iter__ overrides in dict subclasses.
diff --git a/Misc/NEWS b/Misc/NEWS index ff8a082..303f4cf 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -16,6 +16,9 @@ a weakref on itself during a __del__ call for new-style classes (classic classes still have the bug). +- Bug #1648179: set.update() did not recognize an overridden __iter__ + method in subclasses of dict. + - Bug #1579370: Make PyTraceBack_Here use the current thread, not the frame's thread state.