summaryrefslogtreecommitdiff
path: root/Modules/_collectionsmodule.c
Commit message (Expand)AuthorAgeFilesLines
...
* | | | Eliminate unnecessary variablesRaymond Hettinger2015-09-231-4/+2
* | | | Eliminate unnecessary variableRaymond Hettinger2015-09-221-2/+1
* | | | Minor consistency improvements to negative value comparisons.Raymond Hettinger2015-09-211-9/+9
* | | | Add a fast path (no iterator creation) for a common case for repeating deques...Raymond Hettinger2015-09-191-4/+11
* | | | Hoist constant expression out of an inner loopRaymond Hettinger2015-09-191-2/+6
* | | | Tighten inner-loop for deque_inplace_repeat().Raymond Hettinger2015-09-141-4/+6
* | | | Add an exact type match fast path for deque_copy().Raymond Hettinger2015-09-131-0/+16
* | | | Fix refcount.Raymond Hettinger2015-09-131-1/+4
* | | | In-line the append operations inside deque_inplace_repeat().Raymond Hettinger2015-09-121-4/+18
* | | | Simply deque repeat by reusing code in in-line repeat. Avoid unnecessary div...Raymond Hettinger2015-09-091-30/+18
* | | | mergeRaymond Hettinger2015-09-051-6/+10
|\ \ \ \ | |/ / /
| * | | Prevent reentrant badness by deferring the decrefs as long as possible.Raymond Hettinger2015-09-051-6/+10
* | | | mergeRaymond Hettinger2015-08-261-0/+2
|\ \ \ \ | |/ / /
| * | | Issue #24913: Fix overrun error in deque.index().Raymond Hettinger2015-08-261-0/+2
* | | | Minor cleanup.Raymond Hettinger2015-08-141-3/+3
* | | | Fix minor typo in a commentRaymond Hettinger2015-07-311-1/+1
* | | | mergeRaymond Hettinger2015-07-201-1/+1
|\ \ \ \ | |/ / /
| * | | mergeRaymond Hettinger2015-07-201-1/+1
| |\ \ \ | | |/ /
| | * | Issue #19663: Improve error message for defaultdict.Raymond Hettinger2015-07-201-1/+1
| | * | Defer deleted item decref until after the deque is restored to a consistent s...Raymond Hettinger2015-05-021-6/+6
| * | | Issue #16991: Add a C implementation of collections.OrderedDict.Eric Snow2015-05-291-0/+3
* | | | Divisions-by-two for a positive Py_ssize_t compile more cleanly with >>1 than...Raymond Hettinger2015-07-201-1/+1
* | | | Issue #16991: Add a C implementation of collections.OrderedDict.Eric Snow2015-05-291-0/+3
|/ / /
* | | fix refleak in deque_concatBenjamin Peterson2015-04-041-2/+8
* | | Issue 23793: Add deque support for __add__(), __mul__(), and __imul__().Raymond Hettinger2015-03-311-10/+123
* | | Fix typoRaymond Hettinger2015-03-241-1/+1
* | | Minor code and comment cleanups.Raymond Hettinger2015-03-241-21/+18
* | | Improve and fix-up comments.Raymond Hettinger2015-03-241-25/+46
* | | Issue 23744: Minor speed-up for deque.__bool__().Raymond Hettinger2015-03-231-1/+24
* | | Minor nit. Make the rotate() success/fail tests consistent.Raymond Hettinger2015-03-211-3/+3
* | | For safety, wait to decref deleted values until the deque state has been rest...Raymond Hettinger2015-03-211-4/+4
* | | Fix minor formatting nits and remove unnecessary comment.Raymond Hettinger2015-03-211-4/+3
* | | Issue 23704: Add index(), copy(), and insert() to deques. Register deques a...Raymond Hettinger2015-03-211-0/+91
* | | Issue 23705: Improve the performance of __contains__ checks for deques.Raymond Hettinger2015-03-201-1/+33
* | | Minor neatening-up. Make assignments in same order a struct fields. Line-up...Raymond Hettinger2015-03-021-12/+12
* | | Switch the state variable to unsigned for defined wrap-around behavior.Raymond Hettinger2015-03-021-3/+3
* | | Minor beautification. Move struct definitions to the top. Fix-up a comment.Raymond Hettinger2015-03-021-15/+15
* | | Minor code beautification. Replace macro with in-lineable functions.Raymond Hettinger2015-03-021-20/+35
* | | Beautify and better document the use of the size_t cast for bounds checking.Raymond Hettinger2015-03-021-6/+12
* | | Issue #23553: Use an unsigned cast to tighten-up the bounds checking logic.Raymond Hettinger2015-03-011-2/+2
* | | Need a (size_t) cast instead of (unsigned) to be big enough for a Py_ssize_t.Raymond Hettinger2015-02-281-6/+12
* | | Use unsigned division and modulo for item assignment as well.Raymond Hettinger2015-02-281-4/+5
* | | Convert one more division to unsigned arithmetic to speed-up deque_item().Raymond Hettinger2015-02-281-1/+3
* | | Line missed in last checkinRaymond Hettinger2015-02-271-1/+0
* | | Since the index is always non-negative, use faster unsigned division and modulo.Raymond Hettinger2015-02-271-3/+5
* | | Bump the blocksize up from 62 to 64 to speed up the modulo calculation.Raymond Hettinger2015-02-261-6/+3
* | | Update copyright.Raymond Hettinger2015-02-101-1/+1
* | | Optimization guides suggest copying memory in an ascending direction when pos...Raymond Hettinger2015-02-011-3/+3
* | | Add comment and make minor code clean-up to improve clarity.Raymond Hettinger2014-05-181-3/+13
* | | Issue #21101: Eliminate double hashing in the C code for collections.Counter().Raymond Hettinger2014-05-031-3/+14