summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2012-01-26 08:15:07 (GMT)
committerRaymond Hettinger <python@rcn.com>2012-01-26 08:15:07 (GMT)
commit4fd3f0c850543fc72d30c2e38c25419b05d97f4c (patch)
tree4e18eb4ce2bd109b6a3d0c3d4c2684bd666cef16
parenta3dd409b521107c08f918528991e33765ddda808 (diff)
parenteaac4f0d30dba8b53b7ebd1e28b31863e871fa6b (diff)
downloadcpython-4fd3f0c850543fc72d30c2e38c25419b05d97f4c.zip
cpython-4fd3f0c850543fc72d30c2e38c25419b05d97f4c.tar.gz
cpython-4fd3f0c850543fc72d30c2e38c25419b05d97f4c.tar.bz2
Merge
-rw-r--r--Lib/collections/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py
index 6cae1dd..b1c82b4 100644
--- a/Lib/collections/__init__.py
+++ b/Lib/collections/__init__.py
@@ -34,7 +34,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.