Commit 280ac943 authored by Stefan Behnel's avatar Stefan Behnel

Avoid potential C compiler warnings.

parent ccfeb817
...@@ -907,7 +907,7 @@ static PyObject *__Pyx_Coroutine_Close(PyObject *self) { ...@@ -907,7 +907,7 @@ static PyObject *__Pyx_Coroutine_Close(PyObject *self) {
if (unlikely(retval)) { if (unlikely(retval)) {
const char *msg; const char *msg;
Py_DECREF(retval); Py_DECREF(retval);
if (0) { if ((0)) {
#ifdef __Pyx_Coroutine_USED #ifdef __Pyx_Coroutine_USED
} else if (__Pyx_Coroutine_CheckExact(self)) { } else if (__Pyx_Coroutine_CheckExact(self)) {
msg = "coroutine ignored GeneratorExit"; msg = "coroutine ignored GeneratorExit";
......
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