mirror of https://github.com/python/cpython
Use a do-while loop in the inner loop for rotate (m is always greater than zero).
This commit is contained in:
parent
3959af9b2a
commit
840533bf1c
|
@ -506,13 +506,15 @@ _deque_rotate(dequeobject *deque, Py_ssize_t n)
|
|||
rightindex -= m;
|
||||
leftindex -= m;
|
||||
n -= m;
|
||||
while (m--)
|
||||
do {
|
||||
*(dest--) = *(src--);
|
||||
} while (--m);
|
||||
}
|
||||
|
||||
if (rightindex == -1) {
|
||||
block *prevblock = rightblock->leftlink;
|
||||
assert(leftblock != rightblock);
|
||||
assert(b == NULL);
|
||||
b = rightblock;
|
||||
CHECK_NOT_END(prevblock);
|
||||
MARK_END(prevblock->rightlink);
|
||||
|
@ -551,13 +553,15 @@ _deque_rotate(dequeobject *deque, Py_ssize_t n)
|
|||
leftindex += m;
|
||||
rightindex += m;
|
||||
n += m;
|
||||
while (m--)
|
||||
do {
|
||||
*(dest++) = *(src++);
|
||||
} while (--m);
|
||||
}
|
||||
|
||||
if (leftindex == BLOCKLEN) {
|
||||
block *nextblock = leftblock->rightlink;
|
||||
assert(leftblock != rightblock);
|
||||
assert(b == NULL);
|
||||
b = leftblock;
|
||||
CHECK_NOT_END(nextblock);
|
||||
MARK_END(nextblock->leftlink);
|
||||
|
|
Loading…
Reference in New Issue