commit | ec5046b76b834a2c8f7112b25a7da19667a8e2b3 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Tue Nov 20 21:11:26 2012 -0800 |
committer | Raymond Hettinger <python@rcn.com> | Tue Nov 20 21:11:26 2012 -0800 |
tree | 18d27c0160c2f42d20e7a69057138a77f3d74433 | |
parent | b83ea144ccf39e2c9346d3a53cf67e154d29b4cb [diff] |
Fit nit: the return got dropped from an earlier check-in
diff --git a/Lib/collections.py b/Lib/collections.py index ba6d7ca..1364a02 100644 --- a/Lib/collections.py +++ b/Lib/collections.py
@@ -58,7 +58,7 @@ 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]'