diff options
author | Raymond Hettinger <python@rcn.com> | 2005-03-18 21:20:23 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2005-03-18 21:20:23 (GMT) |
commit | 4aec61e0fc29217c93acd0615ad54bd081a64658 (patch) | |
tree | 3fb574eb0ca43704ad5e6a3f21e8f556a1a0b194 /Misc | |
parent | 5011c3f7fcda2c6ee7cc970e61e363a4ec1f092e (diff) | |
download | cpython-4aec61e0fc29217c93acd0615ad54bd081a64658.zip cpython-4aec61e0fc29217c93acd0615ad54bd081a64658.tar.gz cpython-4aec61e0fc29217c93acd0615ad54bd081a64658.tar.bz2 |
Add a remove() method to collections.deque objects.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -49,6 +49,8 @@ Core and builtins Extension Modules ----------------- +- collections.deque objects now support a remove() method. + - operator.itemgetter() and operator.attrgetter() now support retrieving multiple fields. This provides direct support for sorting on multiple keys (primary, secondary, etc). |