Yury Selivanov added the comment:

> After thinking about this some more, I think my problem with asyncio.wait() 
> is a bit bigger than the simple fact that coroutine objects cannot be awaited 
> multiple times.  It seems to me like asyncio.wait() is completely broken for 
> coroutine objects as inputs and that multiple awaits on coroutine objects 
> only make that problem worse.

> While I still think there is a major benefit API-wise to have await 
> expressions produce the same behaviour for both Futures and coroutine 
> objects, I'm moving that discussion to issue #26357.

Looks like your problem can solved if you wrap coroutine objects in Tasks and 
then pass them to asyncio.wait().  In any case, it's good that you've opened 
#26357 to discuss that.  

I'm going to commit the patch for this issue now, since the current behaviour 
of coroutines returning None on second await is wrong.  Allowing multiple 
awaits for coroutine objects also seems very wrong to me, but please feel free 
to discuss that on python-ideas.

----------

_______________________________________
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