diff options
author | Raymond Hettinger <python@rcn.com> | 2016-12-31 19:01:59 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2016-12-31 19:01:59 (GMT) |
commit | b46ea9034349b9d713daff581e624afe07916629 (patch) | |
tree | 57d100415241ca7a3fcc7b76333471e613028844 /Misc/NEWS | |
parent | 6b5e4a86a7f53bcdc565d1eb6d88c17d16b64a2f (diff) | |
download | cpython-b46ea9034349b9d713daff581e624afe07916629.zip cpython-b46ea9034349b9d713daff581e624afe07916629.tar.gz cpython-b46ea9034349b9d713daff581e624afe07916629.tar.bz2 |
Issue #29119: Fix weakref in OrderedDict.move_to_end(). Work by Andra Bogildea.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -143,6 +143,10 @@ Library - Issue #13051: Fixed recursion errors in large or resized curses.textpad.Textbox. Based on patch by Tycho Andersen. +- Issue #29119: Fix weakrefs in the pure python version of + collections.OrderedDict move_to_end() method. + Contributed by Andra Bogildea. + - Issue #9770: curses.ascii predicates now work correctly with negative integers. |