Yury Selivanov added the comment:

Nick,

> After all, waiting for the result with "await" is only one way to terminate a 
> coroutine - you can also get there with direct calls to next(), send(), 
> throw() and close().

Yes, but I expect that almost nobody will use 'send', 'throw' etc on 
coroutines, it's too low level.  In asyncio there is only one place where this 
magic happens.  Regular user will only understand the 'await' part -- that's 
why I wanted to mention it in the error message.

  async def something():
      await coro
      ^ RuntimeError('Cannot resume terminated coroutine')

The above use case might be a bit hard for users to actually understand, as 
opposed to

  async def something():
      await coro
      ^ RuntimeError('coroutine was already awaited on')

What do you think?

Martin, thanks for the review!

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue25887>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to