Commit 554f3340 authored by Antoine Pitrou's avatar Antoine Pitrou

Fix <deque iterator>.__length_hint__() under 64-bit Windows.

parent 671b4d94
......@@ -1121,7 +1121,7 @@ dequeiter_next(dequeiterobject *it)
static PyObject *
dequeiter_len(dequeiterobject *it)
{
return PyLong_FromLong(it->counter);
return PyLong_FromSsize_t(it->counter);
}
PyDoc_STRVAR(length_hint_doc, "Private method returning an estimate of len(list(it)).");
......
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