New submission from Raymond Hettinger: One more step towards making the deque API a little closer to that for lists: >>> deque('abc') + deque('def') deque(['a', 'b', 'c', 'd', 'e', 'f'])
---------- assignee: rhettinger components: Extension Modules files: deque_add4.diff keywords: patch messages: 239419 nosy: rhettinger priority: normal severity: normal stage: patch review status: open title: Support __add__ for deques. type: enhancement versions: Python 3.5 Added file: http://bugs.python.org/file38712/deque_add4.diff _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue23793> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com