index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
_collectionsmodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Restore the data block size to 62.
Raymond Hettinger
2013-07-28
1
-3/+6
*
Assertions key off NDEBUG
Raymond Hettinger
2013-07-27
1
-1/+1
*
Minor code simplification by eliminating an unnecessary temporary variable.
Raymond Hettinger
2013-07-21
1
-12/+6
*
Tweak the deque struct by moving the least used fields (maxlen and weakref) t...
Raymond Hettinger
2013-07-14
1
-1/+1
*
Use a do-while loop in the inner loop for rotate (m is always greater than ze...
Raymond Hettinger
2013-07-14
1
-2/+6
*
Move the freeblock() call outside the main loop to speed-up and simplify the ...
Raymond Hettinger
2013-07-13
1
-9/+15
*
Add a spacing saving heuristic to deque's extend methods
Raymond Hettinger
2013-07-09
1
-0/+16
*
Fix #ifdef
Raymond Hettinger
2013-07-07
1
-1/+1
*
Use macros for marking and checking endpoints in the doubly-linked list of bl...
Raymond Hettinger
2013-07-07
1
-47/+81
*
Improve variable names in deque_count()
Raymond Hettinger
2013-07-07
1
-8/+8
*
Apply the PyObject_VAR_HEAD and Py_SIZE macros
Raymond Hettinger
2013-07-06
1
-40/+39
*
Refactor deque_traverse().
Raymond Hettinger
2013-07-06
1
-6/+6
*
Remove unnecessary branches from count() and reverse().
Raymond Hettinger
2013-07-06
1
-6/+3
*
Speed-up deque indexing by changing the deque block length to a power of two.
Raymond Hettinger
2013-07-06
1
-1/+1
*
Misc improvements to collections.deque()
Raymond Hettinger
2013-06-23
1
-72/+93
*
Minor tweaks to varnames, declarations, and comments.
Raymond Hettinger
2013-02-07
1
-8/+7
*
Minor variable access clean-ups for deque.rotate().
Raymond Hettinger
2013-02-05
1
-13/+13
*
Minor edits: Tighten-up the halflen logic and touch-up the assertions and co...
Raymond Hettinger
2013-02-04
1
-10/+6
*
Issue 16398: One more assertion for good measure.
Raymond Hettinger
2013-02-02
1
-0/+2
*
Issue 16398: Add assertions to show why memcmp is safe.
Raymond Hettinger
2013-02-02
1
-1/+4
*
Issue 16398: Use memcpy() in deque.rotate().
Raymond Hettinger
2013-02-02
1
-50/+60
*
merge 3.3
Benjamin Peterson
2013-01-13
1
-6/+2
|
\
|
*
make deque_clear void, since it's infallible
Benjamin Peterson
2013-01-13
1
-6/+2
*
|
Issue #16398: Optimize deque.rotate()
Raymond Hettinger
2013-01-12
1
-14/+58
|
/
*
Merge: fix docstring for deque ctor to mark iterable parameter optional
Andrew Svetlov
2012-10-31
1
-1/+1
|
\
|
*
Fix docstring for deque ctor to mark iterable parameter optional
Andrew Svetlov
2012-10-31
1
-1/+1
*
|
MERGE: Closes #15469: Correct __sizeof__ support for deque
Jesus Cea
2012-08-03
1
-1/+20
|
\
\
|
|
/
|
*
Closes #15469: Correct __sizeof__ support for deque
Jesus Cea
2012-08-03
1
-1/+20
*
|
Issue #14288: Serialization support for builtin iterators.
Kristján Valur Jónsson
2012-04-03
1
-2/+91
*
|
Issue #13015: Fix a possible reference leak in defaultdict.__repr__.
Antoine Pitrou
2012-02-15
1
-1/+3
|
\
\
|
|
/
|
*
Issue #13015: Fix a possible reference leak in defaultdict.__repr__.
Antoine Pitrou
2012-02-15
1
-1/+3
*
|
Rename _Py_identifier to _Py_IDENTIFIER.
Martin v. Löwis
2011-10-14
1
-2/+2
*
|
Use identifier API for PyObject_GetAttrString.
Martin v. Löwis
2011-10-10
1
-1/+2
*
|
Add API for static strings, primarily good for identifiers.
Martin v. Löwis
2011-10-09
1
-1/+3
*
|
Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.
Brian Curtin
2011-08-11
1
-2/+1
*
|
Simplify _count_elements() in _collections
Victor Stinner
2011-04-20
1
-12/+4
|
/
*
Issue 11713: clarify docstring for collections.deque()
Raymond Hettinger
2011-03-30
1
-1/+1
*
Issue #11004: Repair edge case in deque.count().
Raymond Hettinger
2011-01-25
1
-4/+7
*
Make C helper function more closely match the pure python version, and add te...
Raymond Hettinger
2011-01-03
1
-22/+49
*
Issue 10667: Fast path for collections.Counter
Raymond Hettinger
2010-12-15
1
-1/+67
*
Remove more unneeded casts to hashfunc.
Georg Brandl
2010-10-18
1
-4/+4
*
Fix <deque iterator>.__length_hint__() under 64-bit Windows.
Antoine Pitrou
2010-08-17
1
-1/+1
*
Recorded merge of revisions 81029 via svnmerge from
Antoine Pitrou
2010-05-09
1
-1124/+1124
*
Add count() method to collections.deque().
Raymond Hettinger
2010-04-03
1
-0/+42
*
Fix variants of deque.extend: d.extend(d) d+=d d.extendleft(d)
Raymond Hettinger
2009-12-10
1
-0/+40
*
Add a reverse() method to collections.deque().
Raymond Hettinger
2009-12-10
1
-0/+44
*
Issue 6637: defaultdict.copy() failed with an empty factory.
Raymond Hettinger
2009-08-04
1
-1/+4
*
For collections.deque() objects, expose the maxlen parameter as a read-only a...
Raymond Hettinger
2009-03-10
1
-1/+15
*
Small optimization for corner case where maxlen==0.
Raymond Hettinger
2009-03-10
1
-0/+23
*
Issue #1717: rename tp_compare to tp_reserved. I'll change the
Mark Dickinson
2009-02-02
1
-4/+4
[next]