summaryrefslogtreecommitdiffstats
path: root/Lib/collections.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-04-08 01:16:27 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-04-08 01:16:27 (GMT)
commit2352cf351917fdc964c4778c55b028dc6523d401 (patch)
tree9806c487b9c0043df566a4c71bf2dffda957546d /Lib/collections.py
parentf04fa1bcc5f126cd017833a4e9c8ac45b302b633 (diff)
downloadcpython-2352cf351917fdc964c4778c55b028dc6523d401.zip
cpython-2352cf351917fdc964c4778c55b028dc6523d401.tar.gz
cpython-2352cf351917fdc964c4778c55b028dc6523d401.tar.bz2
Typo.
Diffstat (limited to 'Lib/collections.py')
-rw-r--r--Lib/collections.py2
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