On Thu, Nov 24, 2016 at 7:39 PM, Marko Rauhamaa <ma...@pacujo.net> wrote:
>  * Coroutines can be killed, threads cannot.
>

Not strictly true. A coroutine can be abandoned at an await point, but
the currently-executed call is still going to complete (usually); a
thread can be killed, but certain non-interruptible operations will
delay the termination until after that operation. So either way, the
operation still runs to completion.

ChrisA
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to