There's two instances in that file.
On Thu, Nov 12, 2015, at 07:20, Raymond Hettinger wrote:
>
> > On Nov 11, 2015, at 10:50 PM, Benjamin Peterson wrote:
> >
> >> +if (Py_SIZE(deque) == 0)
> >> +return;
> >> +
> >
> > dequeue is not varsized in Python 2.7, so using Py_SIZE() is inc
> On Nov 11, 2015, at 10:50 PM, Benjamin Peterson wrote:
>
>> +if (Py_SIZE(deque) == 0)
>> +return;
>> +
>
> dequeue is not varsized in Python 2.7, so using Py_SIZE() is incorrect.
Fixed in a2a518b6ded4.
-if (Py_SIZE(deque) == 0)
+if (deque->len == 0)
Raymond
___