Yury Selivanov

Results 403 comments of Yury Selivanov

I'd just iterate over all tasks using `asyncio.all_tasks()`. Check if task is done or not; if not - wait for it; if yes, check if it has failed.

Another idea would be to catch all warnings, match them, and turn them into an error if they're coming from an asyncio task.

Well, yes, set up a custom warnings filter, and run `gc.collect()` after the test; record any event of logging a warning in `Task.__del__`, fail the test if that happens.

I don't think we have resources to debug SPARC64 compatibility. But you're welcome to submit PRs to fix it!

Not currently, unless someone from the community cares to work on that.

You can probably add a getter like this in `loop.pyx`: ``` def get_uvloop_ptr(self): return self.uvloop ``` You can then call it and cast the returned int to a pointer.

Thanks so much! I'll take a look in a few weeks when it's time for uvloop 0.15. If anyone wants to further debug & work on fix please go ahead!