diff options
author | Raymond Hettinger <python@rcn.com> | 2009-04-08 01:16:27 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-04-08 01:16:27 (GMT) |
commit | 2352cf351917fdc964c4778c55b028dc6523d401 (patch) | |
tree | 9806c487b9c0043df566a4c71bf2dffda957546d /Lib/collections.py | |
parent | f04fa1bcc5f126cd017833a4e9c8ac45b302b633 (diff) | |
download | cpython-2352cf351917fdc964c4778c55b028dc6523d401.zip cpython-2352cf351917fdc964c4778c55b028dc6523d401.tar.gz cpython-2352cf351917fdc964c4778c55b028dc6523d401.tar.bz2 |
Typo.
Diffstat (limited to 'Lib/collections.py')
-rw-r--r-- | Lib/collections.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/collections.py b/Lib/collections.py index 69a4b01..3c1b78a 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 |