[issue44225] stop() on a stopped loop inhibits the next run_forever

2021-06-02 Thread megahypex
Change by megahypex : -- keywords: +patch pull_requests: +25079 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26483 ___ Python tracker ___ __

[issue44225] stop() on a stopped loop inhibits the next run_forever

2021-06-02 Thread megahypex
megahypex added the comment: Can I be assigned this issue? -- nosy: +WhosMega ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue44225] stop() on a stopped loop inhibits the next run_forever

2021-05-28 Thread Terry J. Reedy
Change by Terry J. Reedy : -- versions: -Python 3.7, Python 3.8, Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue44225] stop() on a stopped loop inhibits the next run_forever

2021-05-24 Thread Erik Carstensen
New submission from Erik Carstensen : If you call stop() on an already stopped event loop, then the next call to run_forever will terminate after one loop iteration. I would expect the stop to either be a nop, or to be invalid in this state (and raise an exception). Example: import asyncio a