Re: [python-tulip] Status of TaskGroup or something like it?

2019-11-26 Thread Justin Mayfield
Excellent, I'll have a look, thanks for the response. On Tue, Nov 26, 2019 at 3:14 PM Yury Selivanov wrote: > Hi Justin, > > Yes, we want to have TaskGroups in asyncio, and the only reason we didn't > add them to Python 3.8 is that we also need to support ExceptionGroups (or > MultiErrors).

Re: [python-tulip] Status of TaskGroup or something like it?

2019-11-26 Thread Yury Selivanov
Hi Justin, Yes, we want to have TaskGroups in asyncio, and the only reason we didn't add them to Python 3.8 is that we also need to support ExceptionGroups (or MultiErrors).  Nathaniel and I plan to start working on that. Here's am implementation of TaskGroups that I created for EdgeDB 

[python-tulip] Status of TaskGroup or something like it?

2019-11-26 Thread Justin Mayfield
I'm curious if any work has happened towards supporting a grouping concept like Yury has discussed with TaskGroup? I've been away from python for a while and I'm finding that the use of gather and wait is trickier than I remember it. My code tends to be inelegant when done as the docs