summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2012-11-20 21:11:26 -0800
committerRaymond Hettinger <python@rcn.com>2012-11-20 21:11:26 -0800
commitec5046b76b834a2c8f7112b25a7da19667a8e2b3 (patch)
tree18d27c0160c2f42d20e7a69057138a77f3d74433
parentb83ea144ccf39e2c9346d3a53cf67e154d29b4cb (diff)
downloadcpython-git-ec5046b76b834a2c8f7112b25a7da19667a8e2b3.tar.gz
Fit nit: the return got dropped from an earlier check-in
-rw-r--r--Lib/collections.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/collections.py b/Lib/collections.py
index ba6d7caf62..1364a02588 100644
--- a/Lib/collections.py
+++ b/Lib/collections.py
@@ -58,7 +58,7 @@ class OrderedDict(dict):
root = self.__root
last = root[PREV]
last[NEXT] = root[PREV] = self.__map[key] = [last, root, key]
- dict_setitem(self, key, value)
+ return dict_setitem(self, key, value)
def __delitem__(self, key, PREV=0, NEXT=1, dict_delitem=dict.__delitem__):
'od.__delitem__(y) <==> del od[y]'