mirror of https://github.com/python/cpython
Issue #28045: Merge from 3.5
This commit is contained in:
commit
1d7feab78a
|
@ -399,7 +399,7 @@ range_contains_long(rangeobject *r, PyObject *ob)
|
||||||
tmp2 = PyNumber_Remainder(tmp1, r->step);
|
tmp2 = PyNumber_Remainder(tmp1, r->step);
|
||||||
if (tmp2 == NULL)
|
if (tmp2 == NULL)
|
||||||
goto end;
|
goto end;
|
||||||
/* result = (int(ob) - start % step) == 0 */
|
/* result = ((int(ob) - start) % step) == 0 */
|
||||||
result = PyObject_RichCompareBool(tmp2, zero, Py_EQ);
|
result = PyObject_RichCompareBool(tmp2, zero, Py_EQ);
|
||||||
end:
|
end:
|
||||||
Py_XDECREF(tmp1);
|
Py_XDECREF(tmp1);
|
||||||
|
|
Loading…
Reference in New Issue