Issue #9826:  Handle recursive repr in collections.OrderedDict.
diff --git a/Misc/NEWS b/Misc/NEWS
index ab4a06f..c49c96e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,9 @@
 Library
 -------
 
+- Issue #9826: OrderedDict.__repr__ can now handle self-referential
+  values:   d['x'] = d.
+
 - Issue #9825: Using __del__ in the definition of collections.OrderedDict made
   it possible for the user to create self-referencing ordered dictionaries
   which become permanently uncollectable GC garbage. Reinstated the Py3.1