diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-07-24 09:34:11 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-07-24 09:34:11 (GMT) |
commit | 5006b1fd96d614e521573e98ce834e5da17b39c7 (patch) | |
tree | 5f483dd3e804655a0d4f0e1e5edabfb46914ca44 /Lib | |
parent | ca4f34366ac57d95108946b940b5292cbef9e405 (diff) | |
download | cpython-5006b1fd96d614e521573e98ce834e5da17b39c7.zip cpython-5006b1fd96d614e521573e98ce834e5da17b39c7.tar.gz cpython-5006b1fd96d614e521573e98ce834e5da17b39c7.tar.bz2 |
Issue #20055: Fix BaseEventLoop.stop() docstring, incomplete sentence.
Patch written by Saimadhav Heblikar.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/asyncio/base_events.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/asyncio/base_events.py b/Lib/asyncio/base_events.py index 0aeaae4..d0a337b 100644 --- a/Lib/asyncio/base_events.py +++ b/Lib/asyncio/base_events.py @@ -270,9 +270,9 @@ class BaseEventLoop(events.AbstractEventLoop): def stop(self): """Stop running the event loop. - Every callback scheduled before stop() is called will run. - Callback scheduled after stop() is called won't. However, - those callbacks will run if run_*() is called again later. + Every callback scheduled before stop() is called will run. Callbacks + scheduled after stop() is called will not run. However, those callbacks + will run if run_forever is called again later. """ self.call_soon(_raise_stop_error) |