summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2016-12-31 19:01:59 (GMT)
committerRaymond Hettinger <python@rcn.com>2016-12-31 19:01:59 (GMT)
commitb46ea9034349b9d713daff581e624afe07916629 (patch)
tree57d100415241ca7a3fcc7b76333471e613028844 /Misc/NEWS
parent6b5e4a86a7f53bcdc565d1eb6d88c17d16b64a2f (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9aa561f..0dd4ef1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.