cpython (3.2): Issue 13870: Fix out of date comment.
http://hg.python.org/cpython/rev/f7283825effa changeset: 74628:f7283825effa branch: 3.2 parent: 74623:5b8800012e88 user: Raymond Hettinger <python@rcn.com> date: Thu Jan 26 00:14:16 2012 -0800 summary: Issue 13870: Fix out of date comment. files: Lib/collections.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Lib/collections.py b/Lib/collections.py --- a/Lib/collections.py +++ b/Lib/collections.py @@ -33,7 +33,7 @@ # 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. -- Repository URL: http://hg.python.org/cpython
participants (1)
-
raymond.hettinger