This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rhettinger
Recipients rhettinger
Date 2015-03-27.17:33:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1427477638.63.0.2394294758.issue23793@psf.upfronthosting.co.za>
In-reply-to
Content
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'])
History
Date User Action Args
2015-03-27 17:33:58rhettingersetrecipients: + rhettinger
2015-03-27 17:33:58rhettingersetmessageid: <1427477638.63.0.2394294758.issue23793@psf.upfronthosting.co.za>
2015-03-27 17:33:58rhettingerlinkissue23793 messages
2015-03-27 17:33:58rhettingercreate