1. b46ad54 Minor performance tweak for deque.index() with a start argument (GH-9440) by Raymond Hettinger · 6 years ago
  2. 24bd50b closes bpo-31608: Fix a crash in methods of a subclass of _collections.deque with a bad __new__(). (GH-3788) by Oren Milman · 6 years ago
  3. d6debb2 bpo-29919: Remove unused imports found by pyflakes (#137) by Victor Stinner · 7 years ago
  4. 8bde911 Issue #27626: Merge spelling fixes from 3.5 by Martin Panter · 8 years ago
  5. eb99570 Issue #27626: Spelling fixes in docs, comments and internal names by Martin Panter · 8 years ago
  6. b6686fe Fixed test_sizeof for deque. by Serhiy Storchaka · 8 years ago
  7. e23c90c Fixed test_sizeof for deque. by Serhiy Storchaka · 8 years ago
  8. ab479c4 Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 8 years ago
  9. fbb1c5e Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 8 years ago
  10. de128e1 Issue #26015: Added new tests for pickling iterators of mutable sequences. by Serhiy Storchaka · 8 years ago
  11. aabafe7 Issue #26015: Added new tests for pickling iterators of mutable sequences. by Serhiy Storchaka · 8 years ago
  12. a0d416f Issue #26482: Allowed pickling recursive dequeues. by Serhiy Storchaka · 8 years ago
  13. a638971 merge by Raymond Hettinger · 8 years ago
  14. b00da57 Issue #26194: Inserting into a full deque to raise an IndexError by Raymond Hettinger · 8 years ago
  15. 0ef0423 merge by Raymond Hettinger · 8 years ago
  16. 3743432 Issue #26194: Fix undefined behavior for deque.insert() when len(d) == maxlen by Raymond Hettinger · 8 years ago
  17. 906d82d Fix typo by Raymond Hettinger · 8 years ago
  18. aed8830 Add a fast path (no iterator creation) for a common case for repeating deques of size 1 by Raymond Hettinger · 9 years ago
  19. df6b544 Issue #24913: Fix overrun error in deque.index(). by Brett Cannon · 9 years ago
  20. 87674ec Issue #24913: Fix overrun error in deque.index(). by Raymond Hettinger · 9 years ago
  21. 067bbba Check deques against common sequence tests (except for slicing). by Raymond Hettinger · 9 years ago
  22. 41290a6 Issue 23793: Add deque support for __add__(), __mul__(), and __imul__(). by Raymond Hettinger · 9 years ago
  23. 32ea165 Issue 23704: Add index(), copy(), and insert() to deques. Register deques as a MutableSequence. by Raymond Hettinger · 9 years ago
  24. 39dadf7 Issue 23705: Improve the performance of __contains__ checks for deques. by Raymond Hettinger · 9 years ago
  25. daf57f2 Bump the blocksize up from 62 to 64 to speed up the modulo calculation. by Raymond Hettinger · 9 years ago
  26. 65ee467 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  27. bad1257 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  28. badf5d8 Issue 19898: Add test for dequereviter_new. by Raymond Hettinger · 10 years ago
  29. 7757820 Restore the data block size to 62. by Raymond Hettinger · 11 years ago
  30. d9c116c Add a spacing saving heuristic to deque's extend methods by Raymond Hettinger · 11 years ago
  31. de68e0c Speed-up deque indexing by changing the deque block length to a power of two. by Raymond Hettinger · 11 years ago
  32. 1659b75 MERGE: Closes #15469: Correct __sizeof__ support for deque by Jesus Cea · 12 years ago
  33. 16e2fca Closes #15469: Correct __sizeof__ support for deque by Jesus Cea · 12 years ago
  34. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 12 years ago
  35. 512d2cc Issue #11004: Repair edge case in deque.count(). (Reviewed by Georg Brandl.) by Raymond Hettinger · 13 years ago
  36. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  37. 44459de Add count() method to collections.deque(). by Raymond Hettinger · 14 years ago
  38. 1b37e87 Merged revisions 78093 via svnmerge from by Georg Brandl · 14 years ago
  39. 577473f use assert[Not]In where appropriate by Benjamin Peterson · 15 years ago
  40. 3f9afd8 Fix variants of deque.extend: d.extend(d) d+=d d.extendleft(d) by Raymond Hettinger · 15 years ago
  41. e5fdedb Add a reverse() method to collections.deque(). by Raymond Hettinger · 15 years ago
  42. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  43. 5bb0f0e For collections.deque() objects, expose the maxlen parameter as a read-only attribute. by Raymond Hettinger · 15 years ago
  44. 060c7f6 Small optimization for corner case where maxlen==0. by Raymond Hettinger · 15 years ago
  45. a56c467 Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ from by Mark Dickinson · 15 years ago
  46. 7ddda78 Merged revisions 68128 via svnmerge from by Antoine Pitrou · 16 years ago
  47. 801f9d3 Issue #4740: Use HIGHEST_PROTOCOL in pickle test. This enables test for protocol 3 by Hirokazu Yamamoto · 16 years ago
  48. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  49. 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
  50. cc47b05 Merged revisions 61834,61841-61842,61851-61853,61863-61864,61869-61870,61874,61889 via svnmerge from by Christian Heimes · 16 years ago
  51. 3805321 Merged revisions 59465-59487 via svnmerge from by Christian Heimes · 17 years ago
  52. 8ce8a78 Merged revisions 58221-58741 via svnmerge from by Guido van Rossum · 17 years ago
  53. 34d1928 SF patch# 1770008 by Christian Heimes (plus some extras). by Guido van Rossum · 17 years ago
  54. a92b446 Fix test_deque.py: Read and write file in text mode, by Walter Dörwald · 17 years ago
  55. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  56. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  57. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  58. d8c1967 Some more tests pass now. (Also test_compiler.py with -u all.) by Guido van Rossum · 17 years ago
  59. 7131f84 Fix a bunch of doctests with the -d option of refactor.py. by Guido van Rossum · 17 years ago
  60. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  61. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 17 years ago
  62. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 18 years ago
  63. bf12cdb Quite a few fixes to make the library and test suite more robust when by Guido van Rossum · 18 years ago
  64. 09a3f2c Add tests for tuple, list and UserList that initialize the object from by Walter Dörwald · 19 years ago
  65. c448a91 Fix typo. by Walter Dörwald · 19 years ago
  66. d73202c Apply remove's mutation test after every equality test. by Raymond Hettinger · 19 years ago
  67. 4aec61e Add a remove() method to collections.deque objects. by Raymond Hettinger · 19 years ago
  68. 952f880 SF patch #1062279: deque pickling problems (Contributed by Dima Dorfman.) by Raymond Hettinger · 20 years ago
  69. 974d757 Upon insertion, if memory runs out, the deque was left in a corrupted state. by Armin Rigo · 20 years ago
  70. 10c7e86 deque_traverse(): If the deque had one block, and its rightindex was by Tim Peters · 20 years ago
  71. ffdb8bb Use floor division operator. by Raymond Hettinger · 20 years ago
  72. 770acc2 Remove unnecessary line. by Raymond Hettinger · 20 years ago
  73. a435c53 * balance the left/right search for getitem. by Raymond Hettinger · 20 years ago
  74. 691d805 Make sets and deques weak referencable. by Raymond Hettinger · 20 years ago
  75. 354433a SF patch #872326: Generator expression implementation by Raymond Hettinger · 20 years ago
  76. 0e371f2 Make sure "del d[n]" is properly supported. Was necessary because the by Raymond Hettinger · 20 years ago
  77. 300fa1d Temporarily disable doctest until genexps are in CVS by Raymond Hettinger · 20 years ago
  78. e7169eb Add more examples. by Raymond Hettinger · 20 years ago
  79. 0a4977c Replace left(), right(), and __reversed__() with the more general purpose by Raymond Hettinger · 20 years ago
  80. 738ec90 Improvements to collections.deque(): by Raymond Hettinger · 20 years ago
  81. ee33b27 Make deque.rotate() smarter. Beef-up related tests. by Raymond Hettinger · 20 years ago
  82. 5c5eb86 * Incorporate Skip's suggestions for documentation (explain the word deque by Raymond Hettinger · 20 years ago
  83. c058fd1 * Fix ref counting in extend() and extendleft(). by Raymond Hettinger · 20 years ago
  84. 3ba85c2 Have deques support high volume loads. by Raymond Hettinger · 20 years ago
  85. 756b3f3 * Move collections.deque() in from the sandbox by Raymond Hettinger · 20 years ago