From: Raymond Hettinger Date: Wed, 8 Apr 2009 01:16:27 +0000 (+0000) Subject: Typo. X-Git-Tag: v3.1b1~343 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2352cf351917fdc964c4778c55b028dc6523d401;p=thirdparty%2FPython%2Fcpython.git Typo. --- diff --git a/Lib/collections.py b/Lib/collections.py index 69a4b019cdee..3c1b78a3668a 100644 --- a/Lib/collections.py +++ b/Lib/collections.py @@ -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