summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_deque.py
Commit message (Expand)AuthorAgeFilesLines
* Add tests for tuple, list and UserList that initialize the object fromWalter Dörwald2005-03-221-83/+7
* Fix typo.Walter Dörwald2005-03-221-1/+1
* Apply remove's mutation test after every equality test.Raymond Hettinger2005-03-191-7/+8
* Add a remove() method to collections.deque objects.Raymond Hettinger2005-03-181-0/+35
* SF patch #1062279: deque pickling problemsRaymond Hettinger2004-11-091-4/+36
* Upon insertion, if memory runs out, the deque was left in a corrupted state.Armin Rigo2004-10-021-0/+9
* deque_traverse(): If the deque had one block, and its rightindex wasTim Peters2004-10-011-0/+9
* Use floor division operator.Raymond Hettinger2004-09-271-1/+1
* Remove unnecessary line.Raymond Hettinger2004-08-261-1/+0
* * balance the left/right search for getitem.Raymond Hettinger2004-07-091-4/+31
* Make sets and deques weak referencable.Raymond Hettinger2004-05-301-0/+7
* SF patch #872326: Generator expression implementationRaymond Hettinger2004-05-191-1/+1
* Make sure "del d[n]" is properly supported. Was necessary because theRaymond Hettinger2004-05-121-3/+14
* Temporarily disable doctest until genexps are in CVSRaymond Hettinger2004-05-101-1/+1
* Add more examples.Raymond Hettinger2004-05-091-0/+51
* Replace left(), right(), and __reversed__() with the more general purposeRaymond Hettinger2004-03-011-9/+34
* Improvements to collections.deque():Raymond Hettinger2004-02-291-3/+89
* Make deque.rotate() smarter. Beef-up related tests.Raymond Hettinger2004-02-081-9/+43
* * Incorporate Skip's suggestions for documentation (explain the word dequeRaymond Hettinger2004-02-071-0/+12
* * Fix ref counting in extend() and extendleft().Raymond Hettinger2004-02-071-0/+4
* Have deques support high volume loads.Raymond Hettinger2004-02-061-0/+12
* * Move collections.deque() in from the sandboxRaymond Hettinger2004-01-291-0/+337