Issue #28405: Fix compile error for _futuresmodule.c on Cygwin.

Patch by Masayuki Yamamoto.
This commit is contained in:
INADA Naoki 2016-10-11 02:12:34 +09:00
parent 425ec150ea
commit 1be427bbf1
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}