commit | 74f869eb94fdb663fbc066e75bb53eb91240dccd | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Mon Sep 13 22:14:36 2010 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Mon Sep 13 22:14:36 2010 +0000 |
tree | 4afad58c17627ceac83107d545619942e065daef | |
parent | 46287f551ba1add60dba03fc1ad67a51165ed0f6 [diff] [blame] |
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).