Kaydet (Commit) e2052ab8 authored tarafından Tim Peters's avatar Tim Peters

One doctest displaying a dict didn't sort it first. *Maybe* this fixes

the AIX problem with this test.
üst fb50d3ff
......@@ -106,8 +106,8 @@ just like classic classes:
>>> d = dir(a)
>>> 'default' in d and 'x1' in d and 'x2' in d
True
>>> print a.__dict__
{'default': -1000, 'x2': 200, 'x1': 100}
>>> print sortdict(a.__dict__)
{'default': -1000, 'x1': 100, 'x2': 200}
>>>
"""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment