Issue #28405: Fix compile error for _futuresmodule.c on Cygwin.
Patch by Masayuki Yamamoto.
This commit is contained in:
parent
425ec150ea
commit
1be427bbf1
|
@ -943,7 +943,7 @@ new_future_iter(PyObject *fut)
|
|||
}
|
||||
Py_INCREF(fut);
|
||||
it->future = (FutureObj*)fut;
|
||||
_PyObject_GC_TRACK(it);
|
||||
PyObject_GC_Track(it);
|
||||
return (PyObject*)it;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue