This commit is contained in:
Raymond Hettinger 2009-04-08 01:16:27 +00:00
parent f04fa1bcc5
commit 2352cf3519

View file

@ -89,7 +89,7 @@ class OrderedDict(dict, MutableMapping):
curr = curr.next
def __reversed__(self):
'od.__iter__() <==> reversed(od)'
'od.__reversed__() <==> reversed(od)'
# Traverse the linked list in reverse order.
root = self.__root
curr = root.prev