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