Commit b797b427 authored by Stefan Behnel's avatar Stefan Behnel

add branch hint

parent 447e20af
...@@ -224,7 +224,7 @@ __Pyx_async_gen_init_hooks(__pyx_PyAsyncGenObject *o) ...@@ -224,7 +224,7 @@ __Pyx_async_gen_init_hooks(__pyx_PyAsyncGenObject *o)
Py_INCREF(firstiter); Py_INCREF(firstiter);
res = __Pyx_PyObject_CallOneArg(firstiter, (PyObject*)o); res = __Pyx_PyObject_CallOneArg(firstiter, (PyObject*)o);
Py_DECREF(firstiter); Py_DECREF(firstiter);
if (res == NULL) { if (unlikely(res == NULL)) {
return 1; return 1;
} }
Py_DECREF(res); Py_DECREF(res);
......
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