diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2017-12-30 13:40:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-30 13:40:27 (GMT) |
commit | fc35932afdad91f87b49a4854d4333267494c6c1 (patch) | |
tree | 993892d95a1e0fd60c738a3b14766e7aeeb75268 /Modules | |
parent | 02b9ef27752ff4873c592ac3afe7e3410f715984 (diff) | |
download | cpython-fc35932afdad91f87b49a4854d4333267494c6c1.zip cpython-fc35932afdad91f87b49a4854d4333267494c6c1.tar.gz cpython-fc35932afdad91f87b49a4854d4333267494c6c1.tar.bz2 |
Fix typo (#5049)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_asynciomodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_asynciomodule.c b/Modules/_asynciomodule.c index 5ec4ad1..22ce32c 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; } |