summaryrefslogtreecommitdiff
path: root/Modules/_asynciomodule.c
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2016-10-20 16:33:19 -0400
committerYury Selivanov <yury@magic.io>2016-10-20 16:33:19 -0400
commit53478f8c6d9370fc37b377d91d79002823cf8ea0 (patch)
tree6419e907604e9d129b2d872e36142e2eeeeaa4e3 /Modules/_asynciomodule.c
parentb738a1f8a4851dc5395673aea0c8c827cd9d771c (diff)
downloadcpython-git-53478f8c6d9370fc37b377d91d79002823cf8ea0.tar.gz
Issue #28493: Fix typos in _asynciomodule.c
Thanks to Stéphane Wirtel!
Diffstat (limited to 'Modules/_asynciomodule.c')
-rw-r--r--Modules/_asynciomodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_asynciomodule.c b/Modules/_asynciomodule.c
index d9fe63d320..37298cc464 100644
--- a/Modules/_asynciomodule.c
+++ b/Modules/_asynciomodule.c
@@ -789,11 +789,11 @@ 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).
- This is to handle a situation when "res" is a tuple, in which
+ We do this to handle a situation when "res" is a tuple, in which
case PyErr_SetObject would set the value of StopIteration to
the first element of the tuple.