diff --git a/Modules/_asynciomodule.c b/Modules/_asynciomodule.c index d9fe63d..e20b399 100644 --- a/Modules/_asynciomodule.c +++ b/Modules/_asynciomodule.c @@ -789,7 +789,7 @@ FutureIter_iternext(futureiterobject *it) if (res != NULL) { /* The result of the Future is not an exception. - We cunstruct an exception instance manually with + We construct an exception instance manually with PyObject_CallFunctionObjArgs and pass it to PyErr_SetObject (similarly to what genobject.c does).