summaryrefslogtreecommitdiffstats
path: root/Modules/collectionsmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Silence a GCC unused variable warning in debug builds.Raymond Hettinger2004-07-191-2/+1
* Apply VISIT macro.Raymond Hettinger2004-07-151-5/+3
* Moved SunPro warning suppression into pyport.h and out of individualNicholas Bastin2004-07-151-4/+0
* * balance the left/right search for getitem.Raymond Hettinger2004-07-091-15/+13
* Add a comment with implementation notes.Raymond Hettinger2004-06-261-0/+7
* Fixed end-of-loop code not reached warning when using SunPro CNicholas Bastin2004-06-171-0/+4
* Make sets and deques weak referencable.Raymond Hettinger2004-05-301-2/+8
* Make type check work with subclassesRaymond Hettinger2004-05-181-1/+2
* Make sure "del d[n]" is properly supported. Was necessary because theRaymond Hettinger2004-05-121-0/+41
* * Add unittests for iterators that report their lengthRaymond Hettinger2004-04-121-0/+2
* Improve deque iteration.Raymond Hettinger2004-03-181-1/+102
* Special case endpoint access for speed.Raymond Hettinger2004-03-041-10/+18
* Replace left(), right(), and __reversed__() with the more general purposeRaymond Hettinger2004-03-011-123/+69
* Make deque_type static so namespace is not polluted.Neal Norwitz2004-02-291-2/+2
* Improvements to collections.deque():Raymond Hettinger2004-02-291-3/+117
* Get rid of unused variableNeal Norwitz2004-02-281-1/+0
* Make deque.rotate() smarter. Beef-up related tests.Raymond Hettinger2004-02-081-4/+11
* * Incorporate Skip's suggestions for documentation (explain the word dequeRaymond Hettinger2004-02-071-4/+44
* * Fix ref counting in extend() and extendleft().Raymond Hettinger2004-02-071-4/+93
* Have deques support high volume loads.Raymond Hettinger2004-02-061-23/+74
* Fix spelling.Raymond Hettinger2004-01-291-2/+2
* * Move collections.deque() in from the sandboxRaymond Hettinger2004-01-291-0/+582