]> granicus.if.org Git - python/commitdiff
Fix typo (#5049)
authorAndrew Svetlov <andrew.svetlov@gmail.com>
Sat, 30 Dec 2017 13:40:27 +0000 (15:40 +0200)
committerGitHub <noreply@github.com>
Sat, 30 Dec 2017 13:40:27 +0000 (15:40 +0200)
Modules/_asynciomodule.c

index 5ec4ad182abcd5620c3ca34c255f77988070f516..22ce32c593cb3a8b4b1f8bd449656b20af53f4a9 100644 (file)
@@ -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;
 }