mirror of
https://github.com/python/cpython.git
synced 2025-11-02 19:12:55 +00:00
Line missed in last checkin
This commit is contained in:
parent
da2850f932
commit
7e8c7956a7
1 changed files with 0 additions and 1 deletions
|
|
@ -783,7 +783,6 @@ deque_item(dequeobject *deque, Py_ssize_t i)
|
||||||
assert(i >= 0);
|
assert(i >= 0);
|
||||||
n = (Py_ssize_t)((unsigned) i / BLOCKLEN);
|
n = (Py_ssize_t)((unsigned) i / BLOCKLEN);
|
||||||
i = (Py_ssize_t)((unsigned) i % BLOCKLEN);
|
i = (Py_ssize_t)((unsigned) i % BLOCKLEN);
|
||||||
i %= BLOCKLEN;
|
|
||||||
if (index < (Py_SIZE(deque) >> 1)) {
|
if (index < (Py_SIZE(deque) >> 1)) {
|
||||||
b = deque->leftblock;
|
b = deque->leftblock;
|
||||||
while (n--)
|
while (n--)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue