[issue38423] Event loop implementation docs advertise set_event_loop which doesn't work with asyncio.run

2020-01-27 Thread Cilyan Olowen
Cilyan Olowen added the comment: My bad, I did not check that asyncio.Event() was called before the application has a chance to properly set_event_loop with custom one. -- ___ Python tracker

[issue38423] Event loop implementation docs advertise set_event_loop which doesn't work with asyncio.run

2020-01-27 Thread Cilyan Olowen
Cilyan Olowen added the comment: It doesn't seem to work either for asyncio.get_event_loop, especially when using asyncio.wait(), the loop complains that "RuntimeError: Task cb=[_wait.._on_completion() at lib\asyncio\tasks.py:440]> got Future attached to a different loop" --

[issue38423] Event loop implementation docs advertise set_event_loop which doesn't work with asyncio.run

2019-10-09 Thread Yury Selivanov
Yury Selivanov added the comment: Yes, docs updates sound good. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue38423] Event loop implementation docs advertise set_event_loop which doesn't work with asyncio.run

2019-10-09 Thread Hrvoje Nikšić
Change by Hrvoje Nikšić : -- title: Event loop implementation docs advertise set_event_loop -> Event loop implementation docs advertise set_event_loop which doesn't work with asyncio.run ___ Python tracker

[issue38423] Event loop implementation docs advertise set_event_loop

2019-10-09 Thread Hrvoje Nikšić
New submission from Hrvoje Nikšić : The docs of SelectorEventLoop and ProactorEventLoop contain examples that call asyncio.set_event_loop: selector = selectors.SelectSelector() loop = asyncio.SelectorEventLoop(selector) asyncio.set_event_loop(loop) But this won't have any