Commit 27616f33 authored by Stefan Behnel's avatar Stefan Behnel

Make C code C89 again.

parent 592adcc4
...@@ -369,11 +369,11 @@ __Pyx_CyFunction_get_annotations(__pyx_CyFunctionObject *op, CYTHON_UNUSED void ...@@ -369,11 +369,11 @@ __Pyx_CyFunction_get_annotations(__pyx_CyFunctionObject *op, CYTHON_UNUSED void
static PyObject * static PyObject *
__Pyx_CyFunction_get_is_coroutine(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) { __Pyx_CyFunction_get_is_coroutine(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *context) {
int is_coroutine;
if (op->func_is_coroutine) if (op->func_is_coroutine)
return __Pyx_NewRef(op->func_is_coroutine); return __Pyx_NewRef(op->func_is_coroutine);
int is_coroutine = op->flags & __Pyx_CYFUNCTION_COROUTINE; is_coroutine = op->flags & __Pyx_CYFUNCTION_COROUTINE;
#if PY_VERSION_HEX >= 0x03050000 #if PY_VERSION_HEX >= 0x03050000
if (is_coroutine) { if (is_coroutine) {
PyObject *module, *fromlist, *marker = PYIDENT("_is_coroutine"); PyObject *module, *fromlist, *marker = PYIDENT("_is_coroutine");
......
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