]> granicus.if.org Git - python/commit
Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoop
authorVictor Stinner <victor.stinner@gmail.com>
Tue, 10 Jun 2014 08:23:10 +0000 (10:23 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Tue, 10 Jun 2014 08:23:10 +0000 (10:23 +0200)
commitbb2fc5b2a58993c80ee81f10fe463039520a4162
tree7f072c58fe93ed3fec34e99c5bb642e81f68be52
parent15386652bfc57721d52e00e43a0e2ed66724995d
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".
Doc/library/asyncio-eventloop.rst
Lib/asyncio/base_events.py
Lib/asyncio/proactor_events.py
Lib/asyncio/selector_events.py
Lib/test/test_asyncio/test_base_events.py
Lib/test/test_asyncio/test_selector_events.py
Misc/NEWS