Commit 9d429239 authored by Stefan Behnel's avatar Stefan Behnel

Avoid "unused label" warning in PyPy.

parent bc9dfb79
......@@ -1313,6 +1313,8 @@ static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) {
}
#endif
result = __Pyx_PyObject_CallOneArg(method, arg);
// avoid "unused label" warning
goto done;
done:
return result;
}
......
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