[issue9826] OrderedDict ref cycles break repr()

2010-09-11 Thread Raymond Hettinger
Raymond Hettinger added the comment: Fixed in r84728 and r84729. Will backport to 2.7 shortly. -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue9826] OrderedDict ref cycles break repr()

2010-09-11 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo stage: -> needs patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue9826] OrderedDict ref cycles break repr()

2010-09-10 Thread Raymond Hettinger
Raymond Hettinger added the comment: Patch? -- priority: normal -> low ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue9826] OrderedDict ref cycles break repr()

2010-09-10 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- assignee: -> rhettinger nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue9826] OrderedDict ref cycles break repr()

2010-09-10 Thread jason kirtland
New submission from jason kirtland : repr of circular graphs of collections.OrderedDicts fails with 'RuntimeError: maximum recursion depth exceeded while calling a Python object'. >>> from collections import OrderedDict >>> left, right = OrderedDict(), OrderedDict() >>> left['other'] = right >>