Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | merge 3.5 | Benjamin Peterson | 2016-01-01 | 1 | -2/+0 |
|\ | |||||
| * | 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 #20440: Cleaning up the code by using Py_SETREF and Py_CLEAR. | Serhiy Storchaka | 2015-12-27 | 1 | -4/+1 |
* | | | | Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. | Serhiy Storchaka | 2015-12-19 | 1 | -1/+1 |
|\ \ \ \ | |/ / / | |||||
| * | | | Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. | Serhiy Storchaka | 2015-12-19 | 1 | -1/+1 |
* | | | | Neaten-up the inner-loop logic. | Raymond Hettinger | 2015-11-04 | 1 | -3/+3 |
* | | | | Minor cleanup. | Raymond Hettinger | 2015-11-02 | 1 | -1/+1 |
* | | | | merge | Raymond Hettinger | 2015-11-02 | 1 | -1/+1 |
|\ \ \ \ | |||||
| * \ \ \ | Issue #25523: Merge a-to-an corrections from 3.5 | Martin Panter | 2015-11-02 | 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 |
* | | | | | Move the initial start-search out of the main loop so it can be factored-out ... | Raymond Hettinger | 2015-11-02 | 1 | -16/+27 |
|/ / / / | |||||
* | | | | Removed unused parameter | Raymond Hettinger | 2015-10-23 | 1 | -10/+10 |
* | | | | Only update the state variable once per iteration. | Raymond Hettinger | 2015-10-20 | 1 | -4/+8 |
* | | | | Issue #25414: Remove unnecessary tests that can never succeed. | Raymond Hettinger | 2015-10-17 | 1 | -15/+1 |
* | | | | Remove old Todo entry that isn't going to happen. | Raymond Hettinger | 2015-10-16 | 1 | -6/+0 |
* | | | | Rewrap comment. | Raymond Hettinger | 2015-10-15 | 1 | -4/+4 |
* | | | | Use unsigned division | Raymond Hettinger | 2015-10-15 | 1 | -1/+1 |
* | | | | Improve variable names and constant expressions | Raymond Hettinger | 2015-10-15 | 1 | -9/+11 |
* | | | | Minor fixup. maxlen is already known. | Raymond Hettinger | 2015-10-12 | 1 | -2/+2 |
* | | | | Refactor the deque trim logic to eliminate the two separate trim functions. | Raymond Hettinger | 2015-10-12 | 1 | -25/+14 |
* | | | | Hoist the deque->maxlen lookup out of the inner-loop. | Raymond Hettinger | 2015-10-11 | 1 | -6/+10 |
* | | | | Minor tweak. Make the maxlen comparisons a little more clear and consistent. | Raymond Hettinger | 2015-10-11 | 1 | -6/+6 |
* | | | | Eliminate unnecessary test | Raymond Hettinger | 2015-10-06 | 1 | -1/+1 |
* | | | | Factor out common iterator finalization code | Raymond Hettinger | 2015-10-03 | 1 | -25/+20 |
* | | | | Add fast paths to deque_init() for the common cases | Raymond Hettinger | 2015-10-01 | 1 | -3/+10 |
* | | | | Add an early-out for deque_clear() | Raymond Hettinger | 2015-09-30 | 1 | -0/+3 |
* | | | | Move the copy and clear functions upwards to eliminate unnecessary forward re... | Raymond Hettinger | 2015-09-27 | 1 | -117/+113 |
* | | | | Minor tweak to the order of variable updates. | Raymond Hettinger | 2015-09-27 | 1 | -2/+2 |
* | | | | Bump up the maximum number of freeblocks | Raymond Hettinger | 2015-09-27 | 1 | -1/+1 |
* | | | | Precomputing the number iterations allows the inner-loop to be vectorizable. | Raymond Hettinger | 2015-09-26 | 1 | -2/+6 |
* | | | | Hoist constant expression out of an inner loop. | Raymond Hettinger | 2015-09-26 | 1 | -6/+18 |
* | | | | merge | Raymond Hettinger | 2015-09-26 | 1 | -3/+59 |
|\ \ \ \ | |/ / / | |||||
| * | | | Issue #25135: Avoid possible reentrancy issues in deque_clear. | Raymond Hettinger | 2015-09-26 | 1 | -3/+59 |
* | | | | Replace an unpredictable branch with a simple addition. | Raymond Hettinger | 2015-09-24 | 1 | -3/+2 |
* | | | | Eliminate unnecessary variables | Raymond Hettinger | 2015-09-23 | 1 | -4/+2 |
* | | | | Eliminate unnecessary variable | Raymond Hettinger | 2015-09-22 | 1 | -2/+1 |
* | | | | Minor consistency improvements to negative value comparisons. | Raymond Hettinger | 2015-09-22 | 1 | -9/+9 |
* | | | | Add a fast path (no iterator creation) for a common case for repeating deques... | Raymond Hettinger | 2015-09-19 | 1 | -4/+11 |
* | | | | Hoist constant expression out of an inner loop | Raymond Hettinger | 2015-09-19 | 1 | -2/+6 |
* | | | | Tighten inner-loop for deque_inplace_repeat(). | Raymond Hettinger | 2015-09-14 | 1 | -4/+6 |
* | | | | Add an exact type match fast path for deque_copy(). | Raymond Hettinger | 2015-09-13 | 1 | -0/+16 |
* | | | | Fix refcount. | Raymond Hettinger | 2015-09-13 | 1 | -1/+4 |
* | | | | In-line the append operations inside deque_inplace_repeat(). | Raymond Hettinger | 2015-09-12 | 1 | -4/+18 |
* | | | | Simply deque repeat by reusing code in in-line repeat. Avoid unnecessary div... | Raymond Hettinger | 2015-09-10 | 1 | -30/+18 |
* | | | | merge | Raymond Hettinger | 2015-09-06 | 1 | -6/+10 |
|\ \ \ \ | |/ / / | |||||
| * | | | Prevent reentrant badness by deferring the decrefs as long as possible. | Raymond Hettinger | 2015-09-06 | 1 | -6/+10 |
* | | | | merge | Raymond Hettinger | 2015-08-26 | 1 | -0/+2 |
|\ \ \ \ | |/ / / |