From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 26 Oct 2018 17:42:49 +0000 (-0700) Subject: Fix a typo in asyncio-dev.rst. (GH-10133) X-Git-Tag: v3.7.2rc1~223 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f2b5b4f2594efabaf4f3fd20453ae8a9a607a01e;p=thirdparty%2FPython%2Fcpython.git Fix a typo in asyncio-dev.rst. (GH-10133) "threadsafe" (cherry picked from commit 4e3a53bceefe4803c08a025523d8658862cb31c0) Co-authored-by: Benjamin Peterson --- diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst index 5f926fceb22d..b72880361929 100644 --- a/Doc/library/asyncio-dev.rst +++ b/Doc/library/asyncio-dev.rst @@ -50,7 +50,7 @@ When the debug mode is enabled: ` and logs them; this mitigates the "forgotten await" pitfall. -* Many non-treadsafe asyncio APIs (such as :meth:`loop.call_soon` and +* Many non-threadsafe asyncio APIs (such as :meth:`loop.call_soon` and :meth:`loop.call_at` methods) raise an exception if they are called from a wrong thread.