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
*
bpo-31095: fix potential crash during GC (GH-2974) (#3196)
INADA Naoki
2017-09-26
1
-0/+4
*
bpo-29935: Fixed error messages in the index() method of tuple, list and dequ...
Serhiy Storchaka
2017-03-30
1
-2/+2
*
Fix grammar, typos and markup in documentation and code comments
Martin Panter
2017-01-14
1
-1/+1
*
Issue #26194: Inserting into a full deque to raise an IndexError
Raymond Hettinger
2016-02-02
1
-5/+2
*
Issue #26194: Fix undefined behavior for deque.insert() when len(d) == maxlen
Raymond Hettinger
2016-01-27
1
-0/+7
*
merge 3.4
Benjamin Peterson
2016-01-01
1
-2/+0
|
\
|
*
merge 3.3
Benjamin Peterson
2016-01-01
1
-2/+0
|
|
\
|
|
*
remove some copyright notices supserseded by the toplevel ones
Benjamin Peterson
2016-01-01
1
-2/+0
*
|
|
Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.
Serhiy Storchaka
2015-12-19
1
-1/+1
*
|
|
Issue #25523: Further a-to-an corrections new in 3.5
Martin Panter
2015-11-02
1
-1/+1
*
|
|
Backport early-out 91259f061cfb to reduce the cost of bb1a2944bcb6
Raymond Hettinger
2015-10-07
1
-1/+5
*
|
|
Issue #25135: Avoid possible reentrancy issues in deque_clear.
Raymond Hettinger
2015-09-26
1
-3/+59
*
|
|
Prevent reentrant badness by deferring the decrefs as long as possible.
Raymond Hettinger
2015-09-06
1
-6/+10
*
|
|
Issue #24913: Fix overrun error in deque.index().
Raymond Hettinger
2015-08-26
1
-0/+2
*
|
|
merge
Raymond Hettinger
2015-07-20
1
-1/+1
|
\
\
\
|
|
/
/
|
*
|
Issue #19663: Improve error message for defaultdict.
Raymond Hettinger
2015-07-20
1
-1/+1
|
*
|
Defer deleted item decref until after the deque is restored to a consistent s...
Raymond Hettinger
2015-05-02
1
-6/+6
*
|
|
Issue #16991: Add a C implementation of collections.OrderedDict.
Eric Snow
2015-05-30
1
-0/+3
*
|
|
fix refleak in deque_concat
Benjamin Peterson
2015-04-04
1
-2/+8
*
|
|
Issue 23793: Add deque support for __add__(), __mul__(), and __imul__().
Raymond Hettinger
2015-03-31
1
-10/+123
*
|
|
Fix typo
Raymond Hettinger
2015-03-25
1
-1/+1
*
|
|
Minor code and comment cleanups.
Raymond Hettinger
2015-03-25
1
-21/+18
*
|
|
Improve and fix-up comments.
Raymond Hettinger
2015-03-24
1
-25/+46
*
|
|
Issue 23744: Minor speed-up for deque.__bool__().
Raymond Hettinger
2015-03-24
1
-1/+24
*
|
|
Minor nit. Make the rotate() success/fail tests consistent.
Raymond Hettinger
2015-03-21
1
-3/+3
*
|
|
For safety, wait to decref deleted values until the deque state has been rest...
Raymond Hettinger
2015-03-21
1
-4/+4
*
|
|
Fix minor formatting nits and remove unnecessary comment.
Raymond Hettinger
2015-03-21
1
-4/+3
*
|
|
Issue 23704: Add index(), copy(), and insert() to deques. Register deques a...
Raymond Hettinger
2015-03-21
1
-0/+91
*
|
|
Issue 23705: Improve the performance of __contains__ checks for deques.
Raymond Hettinger
2015-03-20
1
-1/+33
*
|
|
Minor neatening-up. Make assignments in same order a struct fields. Line-up...
Raymond Hettinger
2015-03-03
1
-12/+12
*
|
|
Switch the state variable to unsigned for defined wrap-around behavior.
Raymond Hettinger
2015-03-03
1
-3/+3
*
|
|
Minor beautification. Move struct definitions to the top. Fix-up a comment.
Raymond Hettinger
2015-03-03
1
-15/+15
*
|
|
Minor code beautification. Replace macro with in-lineable functions.
Raymond Hettinger
2015-03-03
1
-20/+35
*
|
|
Beautify and better document the use of the size_t cast for bounds checking.
Raymond Hettinger
2015-03-03
1
-6/+12
*
|
|
Issue #23553: Use an unsigned cast to tighten-up the bounds checking logic.
Raymond Hettinger
2015-03-01
1
-2/+2
*
|
|
Need a (size_t) cast instead of (unsigned) to be big enough for a Py_ssize_t.
Raymond Hettinger
2015-03-01
1
-6/+12
*
|
|
Use unsigned division and modulo for item assignment as well.
Raymond Hettinger
2015-03-01
1
-4/+5
*
|
|
Convert one more division to unsigned arithmetic to speed-up deque_item().
Raymond Hettinger
2015-02-28
1
-1/+3
*
|
|
Line missed in last checkin
Raymond Hettinger
2015-02-28
1
-1/+0
*
|
|
Since the index is always non-negative, use faster unsigned division and modulo.
Raymond Hettinger
2015-02-27
1
-3/+5
*
|
|
Bump the blocksize up from 62 to 64 to speed up the modulo calculation.
Raymond Hettinger
2015-02-27
1
-6/+3
*
|
|
Update copyright.
Raymond Hettinger
2015-02-11
1
-1/+1
*
|
|
Optimization guides suggest copying memory in an ascending direction when pos...
Raymond Hettinger
2015-02-02
1
-3/+3
*
|
|
Add comment and make minor code clean-up to improve clarity.
Raymond Hettinger
2014-05-18
1
-3/+13
*
|
|
Issue #21101: Eliminate double hashing in the C code for collections.Counter().
Raymond Hettinger
2014-05-03
1
-3/+14
*
|
|
Add implementation notes
Raymond Hettinger
2014-04-23
1
-1/+32
|
/
/
*
|
merge 3.3 (#20250)
Benjamin Peterson
2014-01-14
1
-1/+3
|
\
\
|
|
/
|
*
correct defaultdict signature in docstring (closes #20250)
Benjamin Peterson
2014-01-14
1
-1/+3
*
|
Issue #19512: _count_elements() of _collections reuses PyId_get identifier
Victor Stinner
2013-11-06
1
-1/+1
*
|
merge
Raymond Hettinger
2013-10-04
1
-14/+15
|
\
\
|
|
/
[next]