Yury Selivanov

Results 403 comments of Yury Selivanov

@wesm I think we can built-in this functionality into asyncpg -- instead of Records we can return a list of columns (numpy arrays, with the decoding semantics you've outlined). Would...

> Yeah, that would definitely work. Could put this NumPy deserializer in an optional extension so that people can still use asyncpg if they don't have NumPy installed (since you...

> It sounds like what you need is a test suite, not benchmarks, am I interpreting that right? Sorry, I should have clarified my request. I wanted to ask for...

@fafhrd91 Maybe you can take a look at this one too? (since you're already working in `sslproto.py`)

> You mentioned that a SIGINT won't be able to interrupt a tight CPU loop, but I don't really see that as a problem. @vxgmichel This is a big no-no....

> catch all exceptions; > add a system to stop the loop and reraise some exceptions; This sounds right. > add a configuration system to chose the exceptions to catch...

@sametmax Thanks for the explanation. I'll take a closer look at #305 (probably will have to be rewritten) in a few days. > And yet we have still some problems...

People do use 'preexec_fn`, and yes, it blocks. I have the same bug in uvloop, although it doesn't use Python's subprocesses. Once I fix that, you can use uvloop to...

> I don't understand all this well enough to know whether this is a good idea or not. We really need to find someone else who wants to co-own asyncio...

Yes, the bug in _signal can (and should) be fixed, and I have a working patch for that. My worry is that it might be a bit too late to...