Commit ddc56e09 authored by Raymond Hettinger's avatar Raymond Hettinger

merge

parents 473bc274 f68f7148
......@@ -900,10 +900,10 @@ the items are returned in the order their keys were first added.
>>> d = OrderedDict.fromkeys('abcde')
>>> d.move_to_end('b')
>>> ''.join(d.keys)
>>> ''.join(d.keys())
'acdeb'
>>> d.move_to_end('b', last=False)
>>> ''.join(d.keys)
>>> ''.join(d.keys())
'bacde'
.. versionadded:: 3.2
......
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