diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2014-07-24 08:36:54 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2014-07-24 08:36:54 (GMT) |
commit | eb14455877c980f44ecf1e2ce157467f527c9ff9 (patch) | |
tree | a57a1f179f1d61100d8fa4966044d93761b44f64 | |
parent | 3b1bcedd57f0f305ddb37a67c27b30f6d662a9d7 (diff) | |
parent | ca4f34366ac57d95108946b940b5292cbef9e405 (diff) | |
download | cpython-eb14455877c980f44ecf1e2ce157467f527c9ff9.zip cpython-eb14455877c980f44ecf1e2ce157467f527c9ff9.tar.gz cpython-eb14455877c980f44ecf1e2ce157467f527c9ff9.tar.bz2 |
Merge 3.4: Fix incomplete sentence in asyncio docs.
-rw-r--r-- | Doc/library/asyncio-eventloop.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index 46af81f..b44fe75 100644 --- a/Doc/library/asyncio-eventloop.rst +++ b/Doc/library/asyncio-eventloop.rst @@ -47,8 +47,9 @@ Run an event loop Stop running the event loop. Every callback scheduled before :meth:`stop` is called will run. - Callback scheduled after :meth:`stop` is called won't. However, those - callbacks will run if :meth:`run_forever` is called again later. + Callbacks scheduled after :meth:`stop` is called will not run. + However, those callbacks will run if :meth:`run_forever` is called + again later. .. method:: BaseEventLoop.is_closed() |