From: Raymond Hettinger Date: Thu, 26 Jan 2012 08:14:16 +0000 (-0800) Subject: Issue 13870: Fix out of date comment. X-Git-Tag: v3.2.3rc1~124 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eaac4f0d30dba8b53b7ebd1e28b31863e871fa6b;p=thirdparty%2FPython%2Fcpython.git Issue 13870: Fix out of date comment. --- diff --git a/Lib/collections.py b/Lib/collections.py index d2625fe03e38..eb2024352de1 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.