mirror of https://github.com/python/cpython
Issue #28405: Fix compile error for _futuresmodule.c on Cygwin.
Patch by Masayuki Yamamoto.
This commit is contained in:
commit
44fa3d3a97
|
@ -943,7 +943,7 @@ new_future_iter(PyObject *fut)
|
||||||
}
|
}
|
||||||
Py_INCREF(fut);
|
Py_INCREF(fut);
|
||||||
it->future = (FutureObj*)fut;
|
it->future = (FutureObj*)fut;
|
||||||
_PyObject_GC_TRACK(it);
|
PyObject_GC_Track(it);
|
||||||
return (PyObject*)it;
|
return (PyObject*)it;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue