diff options
author | Raymond Hettinger <python@rcn.com> | 2012-01-26 08:14:16 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2012-01-26 08:14:16 (GMT) |
commit | eaac4f0d30dba8b53b7ebd1e28b31863e871fa6b (patch) | |
tree | 698b0c710a21016a67fc257ffe2959a569ef4208 | |
parent | 6c89a79d555a8d72b74fad5f533d36cfb645c808 (diff) | |
download | cpython-eaac4f0d30dba8b53b7ebd1e28b31863e871fa6b.zip cpython-eaac4f0d30dba8b53b7ebd1e28b31863e871fa6b.tar.gz cpython-eaac4f0d30dba8b53b7ebd1e28b31863e871fa6b.tar.bz2 |
Issue 13870: Fix out of date comment.
-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 d2625fe..eb20243 100644 --- a/Lib/collections.py +++ b/Lib/collections.py @@ -33,7 +33,7 @@ class OrderedDict(dict): # The circular doubly linked list starts and ends with a sentinel element. # The sentinel element never gets deleted (this simplifies the algorithm). # The sentinel is in self.__hardroot with a weakref proxy in self.__root. - # The prev/next links are weakref proxies (to prevent circular references). + # The prev links are weakref proxies (to prevent circular references). # Individual links are kept alive by the hard reference in self.__map. # Those hard references disappear when a key is deleted from an OrderedDict. |