- 6688bdb Minor cleanups. by Raymond Hettinger · 12 years ago
- 4264532 Issue 16398: Use memcpy() in deque.rotate(). by Raymond Hettinger · 12 years ago
- 40056de make deque_clear void, since it's infallible by Benjamin Peterson · 12 years ago
- 2cdb643 Issue #16398: Optimize deque.rotate() by Raymond Hettinger · 12 years ago
- 227f59b Fix docstring for deque ctor to mark iterable parameter optional by Andrew Svetlov · 12 years ago
- d4e58dc Closes #15469: Correct __sizeof__ support for deque by Jesus Cea · 12 years ago
- c39cd78 Issue #13015: Fix a possible reference leak in defaultdict.__repr__. by Antoine Pitrou · 13 years ago
- db9d64b Issue 11713: clarify docstring for collections.deque() by Raymond Hettinger · 14 years ago
- 57a8689 Issue 11004: Fix edge case for deque.count(). by Raymond Hettinger · 14 years ago
- c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
- 5f516ed Add count() method to collections.deque(). by Raymond Hettinger · 15 years ago
- a5fd24e Add a reverse() method to collections.deque(). by Raymond Hettinger · 15 years ago
- 0b3263b Fix variants of deque.extend: d.extend(d) d+=d d.extendleft(d) by Raymond Hettinger · 15 years ago
- 8fdab95 Issue 6637: defaultdict.copy() failed with an empty factory. by Raymond Hettinger · 15 years ago
- 56411aa For collections.deque() objects, expose the maxlen parameter as a read-only attribute. by Raymond Hettinger · 16 years ago
- bac769b Small optimization for corner case where maxlen==0. by Raymond Hettinger · 16 years ago
- 57eb0e9 #4801 _collections module fails to build on cygwin. by Amaury Forgeot d'Arc · 16 years ago
- aa68790 Issue #3680: Reference cycles created through a dict, set or deque iterator did not get collected. by Antoine Pitrou · 16 years ago
- 05e3449 #3743: PY_FORMAT_SIZE_T is designed for the OS "printf" functions, not for by Amaury Forgeot d'Arc · 16 years ago
- 94a7305 d is the correct format string by Christian Heimes · 16 years ago
- 1cc6963 Fixed two format strings in the _collections module. For example by Christian Heimes · 16 years ago
- 723ba30 Parse to the correct datatype. by Raymond Hettinger · 16 years ago
- 33fcf9d Finish-up the partial conversion from int to Py_ssize_t for deque indices and length. by Raymond Hettinger · 16 years ago
- 53663a6 Issue 2235: __hash__ is once again inherited by default, but inheritance can be blocked explicitly so that collections.Hashable remains meaningful by Nick Coghlan · 16 years ago
- 111c180 Make more symbols static. by Martin v. Löwis · 16 years ago
- dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
- 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
- a37430a dict.copy() rises from the ashes. Revert r60687. by Raymond Hettinger · 17 years ago
- 17a74c3 Add -3 warnings that set.copy(), dict.copy(), and defaultdict.copy() will go away in Py3.x by Raymond Hettinger · 17 years ago
- b01aa43 issue 2045: Infinite recursion when printing a subclass of defaultdict, by Amaury Forgeot d'Arc · 17 years ago
- e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
- adf9ffd Fix bug 1604. deque.__init__() did not clear existing contents like list.__init__. Not a backport candidate. by Raymond Hettinger · 17 years ago
- d3ffd34 Use a freelist to speed-up block allocation and deallocation in collections.deque(). by Raymond Hettinger · 17 years ago
- 6899586 Accept Jim Jewett's api suggestion to use None instead of -1 to indicate unbounded deques. by Raymond Hettinger · 17 years ago
- 556b43d Restore BEGIN/END THREADS macros which were squashed in the previous checkin by Raymond Hettinger · 17 years ago
- c47cf7d dict could be NULL, so we need to XDECREF. by Neal Norwitz · 17 years ago
- a7fc4b1 Add __asdict__() to NamedTuple and refine the docs. by Raymond Hettinger · 17 years ago
- 0153159 Add a bunch of GIL release/acquire points in tp_print implementations and for by Brett Cannon · 17 years ago
- 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
- b51a57e Fix another reincarnation of bug #1576657 in defaultdict. by Georg Brandl · 18 years ago
- eb97988 Prepare collections module for pure python code entries. by Raymond Hettinger · 18 years ago[Renamed (99%) from Modules/collectionsmodule.c]
- 5a0217e Check for a common user error with defaultdict(). by Raymond Hettinger · 18 years ago
- b84c137 Bug #1486663: don't reject keyword arguments for subclasses of builtin types. by Georg Brandl · 18 years ago
- 51c2f6c Fix zero-length corner case for iterating over a mutating deque. by Raymond Hettinger · 18 years ago
- ccc56c7 Really address the issue of where to place the assert for leftblock. by Neal Norwitz · 18 years ago
- 9cd3c34 Move the assert which checks for a NULL pointer first. Klocwork #274. by Neal Norwitz · 18 years ago
- 5566e96 defdict_reduce(): Plug leaks. by Tim Peters · 18 years ago
- edf17d8 Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, for by Thomas Wouters · 19 years ago
- 3b8ff31 SF Bug #1448488 - make collectionsmodule build on Cygwin, using the same by Anthony Baxter · 19 years ago
- d37ac69 Remove unnecessary casts from type object initializers. by Georg Brandl · 19 years ago
- 1968ad3 - Patch 1433928: by Guido van Rossum · 19 years ago
- ad0a462 Use Py_ssize_t for counts and sizes. by Martin v. Löwis · 19 years ago
- 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
- f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 19 years ago
- 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
- 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
- 02c4287 Disallow keyword arguments for type constructors that don't use them. by Georg Brandl · 19 years ago
- d73202c Apply remove's mutation test after every equality test. by Raymond Hettinger · 20 years ago
- 4aec61e Add a remove() method to collections.deque objects. by Raymond Hettinger · 20 years ago
- 952f880 SF patch #1062279: deque pickling problems (Contributed by Dima Dorfman.) by Raymond Hettinger · 20 years ago
- 7d112df Bump-up block size. by Raymond Hettinger · 20 years ago
- dcb9d94 Simplify delitem() code by calling rotate() directly instead of using by Raymond Hettinger · 20 years ago
- c5fa992 Armin's patch to prevent overflows. by Raymond Hettinger · 20 years ago
- 974d757 Upon insertion, if memory runs out, the deque was left in a corrupted state. by Armin Rigo · 20 years ago
- d1b3d88 * Bulletproof the method for detecting mutations during iteration. by Raymond Hettinger · 20 years ago
- 77e8bf1 Restore the block length and add a comment. by Raymond Hettinger · 20 years ago
- 4ca4c7c Clarify the relationship between indices. by Raymond Hettinger · 20 years ago
- 61f05fb * Elaborate on the invariant comments and make them more precise. by Raymond Hettinger · 20 years ago
- 10c7e86 deque_traverse(): If the deque had one block, and its rightindex was by Tim Peters · 20 years ago
- d6e0032 Typos in new comments. by Tim Peters · 20 years ago
- d8768d3 Document some reverse-engineered invariants and pragmatic hints. by Tim Peters · 20 years ago
- 6f85356 Definition consistency. by Tim Peters · 20 years ago
- 1065f75 Trimmed trailing whitespace. by Tim Peters · 20 years ago
- e9c89e8 Silence a GCC unused variable warning in debug builds. by Raymond Hettinger · 20 years ago
- 67115a2 Apply VISIT macro. by Raymond Hettinger · 20 years ago
- 9ba301e Moved SunPro warning suppression into pyport.h and out of individual by Nicholas Bastin · 20 years ago
- a435c53 * balance the left/right search for getitem. by Raymond Hettinger · 20 years ago
- 616f4f6 Add a comment with implementation notes. by Raymond Hettinger · 20 years ago
- 1ce9e4c Fixed end-of-loop code not reached warning when using SunPro C by Nicholas Bastin · 20 years ago
- 691d805 Make sets and deques weak referencable. by Raymond Hettinger · 20 years ago
- 285cfcc Make type check work with subclasses by Raymond Hettinger · 20 years ago
- 0e371f2 Make sure "del d[n]" is properly supported. Was necessary because the by Raymond Hettinger · 20 years ago
- 7892b1c * Add unittests for iterators that report their length by Raymond Hettinger · 21 years ago
- 1e5809f Improve deque iteration. by Raymond Hettinger · 21 years ago
- 6c79a51 Special case endpoint access for speed. by Raymond Hettinger · 21 years ago
- 0a4977c Replace left(), right(), and __reversed__() with the more general purpose by Raymond Hettinger · 21 years ago
- 87f1013 Make deque_type static so namespace is not polluted. by Neal Norwitz · 21 years ago
- 738ec90 Improvements to collections.deque(): by Raymond Hettinger · 21 years ago
- a9208f1 Get rid of unused variable by Neal Norwitz · 21 years ago
- ee33b27 Make deque.rotate() smarter. Beef-up related tests. by Raymond Hettinger · 21 years ago
- 5c5eb86 * Incorporate Skip's suggestions for documentation (explain the word deque by Raymond Hettinger · 21 years ago
- c058fd1 * Fix ref counting in extend() and extendleft(). by Raymond Hettinger · 21 years ago
- 3ba85c2 Have deques support high volume loads. by Raymond Hettinger · 21 years ago
- d0814eb Fix spelling. by Raymond Hettinger · 21 years ago
- 756b3f3 * Move collections.deque() in from the sandbox by Raymond Hettinger · 21 years ago