cpython: a8dd18e375c8 (original) (raw)
Mercurial > cpython
changeset 104433:a8dd18e375c8 3.6
Issue #28405: Fix compile error for _futuresmodule.c on Cygwin. Patch by Masayuki Yamamoto. [#28405]
INADA Naoki songofacandy@gmail.com | |
---|---|
date | Tue, 11 Oct 2016 02:12:34 +0900 |
parents | e050ed5da06d |
children | d2a313d13542 d05bffc06b2d |
files | Modules/_futuresmodule.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-)[+] [-] Modules/_futuresmodule.c 2 |
line wrap: on
line diff
--- a/Modules/_futuresmodule.c +++ b/Modules/_futuresmodule.c @@ -943,7 +943,7 @@ new_future_iter(PyObject fut) } Py_INCREF(fut); it->future = (FutureObj)fut;