mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Issue #28405: Fix compile error for _futuresmodule.c on Cygwin.
Patch by Masayuki Yamamoto.
This commit is contained in:
parent
425ec150ea
commit
1be427bbf1
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue