Message 321323 - Python tracker

Message321323

Author yselivanov
Recipients and800, asvetlov, yselivanov
Date 2018-07-09.15:22:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1531149779.56.0.56676864532.issue34074@psf.upfronthosting.co.za>
In-reply-to
Content
There's no bug here. `loop.stop()` simply stops the loop, all running tasks are just paused. You can re-run the same loop, and the `work()` task will resume.

In other words, `loop.stop()` does not trigger task cancellation, therefore it does not throw in any exceptions into the `work()` task.
History
Date User Action Args
2018-07-09 15:22:59yselivanovsetrecipients: + yselivanov, asvetlov, and800
2018-07-09 15:22:59yselivanovsetmessageid: <1531149779.56.0.56676864532.issue34074@psf.upfronthosting.co.za>
2018-07-09 15:22:59yselivanovlinkissue34074 messages
2018-07-09 15:22:59yselivanovcreate