Issue 9826: OrderedDict.__repr__ did not play well with self-referencing dicts.
diff --git a/Misc/NEWS b/Misc/NEWS
index 0ee1605..657e991 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -43,6 +43,9 @@
 Library
 -------
 
+- Issue #9826: OrderedDict.__repr__ can now handle self-referential
+  values:   d['x'] = d.
+
 - Issue #767645: Set os.path.supports_unicode_filenames to True on Mac OS X
   (macpath module).