diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-06-10 08:23:10 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-06-10 08:23:10 (GMT) |
commit | bb2fc5b2a58993c80ee81f10fe463039520a4162 (patch) | |
tree | 7f072c58fe93ed3fec34e99c5bb642e81f68be52 /Doc/library/asyncio-eventloop.rst | |
parent | 15386652bfc57721d52e00e43a0e2ed66724995d (diff) | |
download | cpython-bb2fc5b2a58993c80ee81f10fe463039520a4162.zip cpython-bb2fc5b2a58993c80ee81f10fe463039520a4162.tar.gz cpython-bb2fc5b2a58993c80ee81f10fe463039520a4162.tar.bz2 |
Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoop
Add BaseEventLoop._closed attribute and use it to check if the event loop was
closed or not, instead of checking different attributes in each subclass of
BaseEventLoop.
run_forever() and run_until_complete() methods now raise a RuntimeError('Event loop is
closed') exception if the event loop was closed.
BaseProactorEventLoop.close() now also cancels "accept futures".
Diffstat (limited to 'Doc/library/asyncio-eventloop.rst')
-rw-r--r-- | Doc/library/asyncio-eventloop.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index 6d0e617..7717b7a 100644 --- a/Doc/library/asyncio-eventloop.rst +++ b/Doc/library/asyncio-eventloop.rst @@ -119,6 +119,12 @@ Run an event loop Callback scheduled after :meth:`stop` is called won't. However, those callbacks will run if :meth:`run_forever` is called again later. +.. method:: BaseEventLoop.is_closed() + + Returns ``True`` if the event loop was closed. + + .. versionadded:: 3.4.2 + .. method:: BaseEventLoop.close() Close the event loop. The loop should not be running. |