Results 955 comments of Thomas Grainger

There's trollius for legacy pythons, but yes it would. I envisaged this as a shared sans-io core with asyncio and synchronous apis made available separately

That's very unfortunate On 17 Sep 2017 02:30, "Rob Speed" wrote: > I gave this a bit of a look and it's looking a bit harder than I expected. >...

@rspeed oh great stuff, any chance of some PRs?

```js const schema = { type: 'object', properties: { type: { type: 'string', enum: ['ham', 'spam', 'eggs'], }, fk: { type: 'integer' }, }, }; const uiSchema = { {...

@webknjaz I think this fixes the issue with TestCase, but now there's a TimeoutError problem instead

I think I've been a bit too liberal with my `except TimeoutError` clauses, it's only really needed if there's a timeout contextmanager or asyncio.wait_for in the try

@encukou this looks like it might be because asyncio.run and AsyncTestCase (via asyncio.Runner) no longer calls asyncio.set_event_loop?

@encukou this test only fails when run after `tests/test_loop.py::test_subprocess_co[pyloop]` - when you run it in isolation it passes: ``` ✘ graingert@superjacent  venv  ~/projects/aiohttp   patch-6757  pytest...