1. 32ea165 Issue 23704: Add index(), copy(), and insert() to deques. Register deques as a MutableSequence. by Raymond Hettinger · 9 years ago
  2. 39dadf7 Issue 23705: Improve the performance of __contains__ checks for deques. by Raymond Hettinger · 9 years ago
  3. daf57f2 Bump the blocksize up from 62 to 64 to speed up the modulo calculation. by Raymond Hettinger · 9 years ago
  4. 65ee467 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  5. bad1257 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  6. badf5d8 Issue 19898: Add test for dequereviter_new. by Raymond Hettinger · 10 years ago
  7. 7757820 Restore the data block size to 62. by Raymond Hettinger · 11 years ago
  8. d9c116c Add a spacing saving heuristic to deque's extend methods by Raymond Hettinger · 11 years ago
  9. de68e0c Speed-up deque indexing by changing the deque block length to a power of two. by Raymond Hettinger · 11 years ago
  10. 1659b75 MERGE: Closes #15469: Correct __sizeof__ support for deque by Jesus Cea · 12 years ago
  11. 16e2fca Closes #15469: Correct __sizeof__ support for deque by Jesus Cea · 12 years ago
  12. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 12 years ago
  13. 512d2cc Issue #11004: Repair edge case in deque.count(). (Reviewed by Georg Brandl.) by Raymond Hettinger · 14 years ago
  14. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  15. 44459de Add count() method to collections.deque(). by Raymond Hettinger · 14 years ago
  16. 1b37e87 Merged revisions 78093 via svnmerge from by Georg Brandl · 14 years ago
  17. 577473f use assert[Not]In where appropriate by Benjamin Peterson · 15 years ago
  18. 3f9afd8 Fix variants of deque.extend: d.extend(d) d+=d d.extendleft(d) by Raymond Hettinger · 15 years ago
  19. e5fdedb Add a reverse() method to collections.deque(). by Raymond Hettinger · 15 years ago
  20. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  21. 5bb0f0e For collections.deque() objects, expose the maxlen parameter as a read-only attribute. by Raymond Hettinger · 15 years ago
  22. 060c7f6 Small optimization for corner case where maxlen==0. by Raymond Hettinger · 15 years ago
  23. a56c467 Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ from by Mark Dickinson · 16 years ago
  24. 7ddda78 Merged revisions 68128 via svnmerge from by Antoine Pitrou · 16 years ago
  25. 801f9d3 Issue #4740: Use HIGHEST_PROTOCOL in pickle test. This enables test for protocol 3 by Hirokazu Yamamoto · 16 years ago
  26. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  27. 33fe809 Merged revisions 62260-62261,62266,62271,62277-62279,62289-62290,62293-62298,62302-62306,62308,62311,62313-62315,62319-62321 via svnmerge from by Christian Heimes · 16 years ago
  28. cc47b05 Merged revisions 61834,61841-61842,61851-61853,61863-61864,61869-61870,61874,61889 via svnmerge from by Christian Heimes · 16 years ago
  29. 3805321 Merged revisions 59465-59487 via svnmerge from by Christian Heimes · 17 years ago
  30. 8ce8a78 Merged revisions 58221-58741 via svnmerge from by Guido van Rossum · 17 years ago
  31. 34d1928 SF patch# 1770008 by Christian Heimes (plus some extras). by Guido van Rossum · 17 years ago
  32. a92b446 Fix test_deque.py: Read and write file in text mode, by Walter Dörwald · 17 years ago
  33. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  34. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  35. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  36. d8c1967 Some more tests pass now. (Also test_compiler.py with -u all.) by Guido van Rossum · 17 years ago
  37. 7131f84 Fix a bunch of doctests with the -d option of refactor.py. by Guido van Rossum · 17 years ago
  38. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  39. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 18 years ago
  40. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 18 years ago
  41. bf12cdb Quite a few fixes to make the library and test suite more robust when by Guido van Rossum · 18 years ago
  42. 09a3f2c Add tests for tuple, list and UserList that initialize the object from by Walter Dörwald · 19 years ago
  43. c448a91 Fix typo. by Walter Dörwald · 19 years ago
  44. d73202c Apply remove's mutation test after every equality test. by Raymond Hettinger · 19 years ago
  45. 4aec61e Add a remove() method to collections.deque objects. by Raymond Hettinger · 19 years ago
  46. 952f880 SF patch #1062279: deque pickling problems (Contributed by Dima Dorfman.) by Raymond Hettinger · 20 years ago
  47. 974d757 Upon insertion, if memory runs out, the deque was left in a corrupted state. by Armin Rigo · 20 years ago
  48. 10c7e86 deque_traverse(): If the deque had one block, and its rightindex was by Tim Peters · 20 years ago
  49. ffdb8bb Use floor division operator. by Raymond Hettinger · 20 years ago
  50. 770acc2 Remove unnecessary line. by Raymond Hettinger · 20 years ago
  51. a435c53 * balance the left/right search for getitem. by Raymond Hettinger · 20 years ago
  52. 691d805 Make sets and deques weak referencable. by Raymond Hettinger · 20 years ago
  53. 354433a SF patch #872326: Generator expression implementation by Raymond Hettinger · 20 years ago
  54. 0e371f2 Make sure "del d[n]" is properly supported. Was necessary because the by Raymond Hettinger · 20 years ago
  55. 300fa1d Temporarily disable doctest until genexps are in CVS by Raymond Hettinger · 20 years ago
  56. e7169eb Add more examples. by Raymond Hettinger · 20 years ago
  57. 0a4977c Replace left(), right(), and __reversed__() with the more general purpose by Raymond Hettinger · 20 years ago
  58. 738ec90 Improvements to collections.deque(): by Raymond Hettinger · 20 years ago
  59. ee33b27 Make deque.rotate() smarter. Beef-up related tests. by Raymond Hettinger · 20 years ago
  60. 5c5eb86 * Incorporate Skip's suggestions for documentation (explain the word deque by Raymond Hettinger · 20 years ago
  61. c058fd1 * Fix ref counting in extend() and extendleft(). by Raymond Hettinger · 20 years ago
  62. 3ba85c2 Have deques support high volume loads. by Raymond Hettinger · 21 years ago
  63. 756b3f3 * Move collections.deque() in from the sandbox by Raymond Hettinger · 21 years ago