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