Commit 7e8c7956 authored by Raymond Hettinger's avatar Raymond Hettinger

Line missed in last checkin

parent da2850f9
......@@ -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--)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment