https://github.com/python/cpython/commit/fc35932afdad91f87b49a4854d4333267494c6c1 commit: fc35932afdad91f87b49a4854d4333267494c6c1 branch: master author: Andrew Svetlov <andrew.svetlov at gmail.com> committer: GitHub <noreply at github.com> date: 2017年12月30日T15:40:27+02:00 summary: Fix typo (#5049) files: M Modules/_asynciomodule.c diff --git a/Modules/_asynciomodule.c b/Modules/_asynciomodule.c index 5ec4ad182ab..22ce32c593c 100644 --- a/Modules/_asynciomodule.c +++ b/Modules/_asynciomodule.c @@ -2265,7 +2265,7 @@ _asyncio_Task_set_exception(TaskObj *self, PyObject *exception) /*[clinic end generated code: output=bc377fc28067303d input=9a8f65c83dcf893a]*/ { PyErr_SetString(PyExc_RuntimeError, - "Task doed not support set_exception operation"); + "Task does not support set_exception operation"); return NULL; }