diff options
author | Leo Arias <leo.arias@canonical.com> | 2018-02-04 00:36:10 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2018-02-04 00:36:10 (GMT) |
commit | c3d9508ff22ece9a96892b628dd5813e2fb0cd80 (patch) | |
tree | 56271a3b3e3681e47e97ec2dca926bc9cb891a5e /Modules/_asynciomodule.c | |
parent | 589c718a8e3bde017350f248f7f1c009240eb52b (diff) | |
download | cpython-c3d9508ff22ece9a96892b628dd5813e2fb0cd80.zip cpython-c3d9508ff22ece9a96892b628dd5813e2fb0cd80.tar.gz cpython-c3d9508ff22ece9a96892b628dd5813e2fb0cd80.tar.bz2 |
bpo-32746: Fix multiple typos (GH-5144)
Fix typos found by codespell in docs, docstrings, and comments.
Diffstat (limited to 'Modules/_asynciomodule.c')
-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 a5cf687..e82425b 100644 --- a/Modules/_asynciomodule.c +++ b/Modules/_asynciomodule.c @@ -187,7 +187,7 @@ is_coroutine(PyObject *coro) return _is_coroutine(coro); } - /* either an error has occured or + /* either an error has occurred or type(coro) is in iscoroutine_typecache */ return has_it; |