Line missed in last checkin

This commit is contained in:
Raymond Hettinger 2015-02-27 16:59:29 -08:00
parent da2850f932
commit 7e8c7956a7
1 changed files with 0 additions and 1 deletions

View File

@ -783,7 +783,6 @@ deque_item(dequeobject *deque, Py_ssize_t i)
assert(i >= 0);
n = (Py_ssize_t)((unsigned) i / BLOCKLEN);
i = (Py_ssize_t)((unsigned) i % BLOCKLEN);
i %= BLOCKLEN;
if (index < (Py_SIZE(deque) >> 1)) {
b = deque->leftblock;
while (n--)