Commit 8d2df028 authored by Max Bachmann's avatar Max Bachmann Committed by GitHub

Remove unreachable code in Utility function (GH-4458)

parent b96ae4d9
......@@ -72,10 +72,9 @@ static int __Pyx_IternextUnpackEndCheck(PyObject *retval, Py_ssize_t expected) {
Py_DECREF(retval);
__Pyx_RaiseTooManyValuesError(expected);
return -1;
} else {
return __Pyx_IterFinish();
}
return 0;
return __Pyx_IterFinish();
}
/////////////// UnpackTuple2.proto ///////////////
......
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