[Python-checkins] cpython (merge 3.2 -> default): Merge

raymond.hettinger python-checkins at python.org
Thu Jan 26 09:15:46 CET 2012


http://hg.python.org/cpython/rev/d2cf8a34ddf9
changeset:   74629:d2cf8a34ddf9
parent:      74627:e12b8d3a3d03
parent:      74628:f7283825effa
user:        Raymond Hettinger <python at rcn.com>
date:        Thu Jan 26 00:15:07 2012 -0800
summary:
  Merge

files:
  Lib/collections/__init__.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py
--- a/Lib/collections/__init__.py
+++ b/Lib/collections/__init__.py
@@ -34,7 +34,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


More information about the Python-checkins mailing list