Mark Harviston
                                            Mark Harviston
                                        
                                    You don't need to specify the executor, since that's the API the loop is supposed to implent. Personally, I think using run_in_executor without explicitly setting the executor is dumb. That's...
Seems people think this is a good idea? All solutions require some inspection/metaprogramming with regards to dynamically injecting a parent class. On Jan 9, 2015 4:47 AM, "Arve Knudsen" [email protected]...
Well I'm thinking of the things that need to happen: A subclass of QThread is needed to make QThreadWorkers (QThreadExecutor & QThreadWorker could totally be moved to a new module)...
I'm working on this in https://github.com/harvimt/quamash/tree/depinject It works just not on windows (yet)
see #13 for more info on zeromq I think @horazont or @aknuds1 had a patch out with the aiozmq project to get quamash working better, but it was rejected because...
You could try using zmq's event loop in the client, and then just doing: ```python while True: app.processEvents() yield from asyncio.sleep(0) ``` in a coroutine and not use quamash.
when submitting a patch like this, it's customary to submit it _as a PR_ this... is kind of the point of github. Also the thing actually blocking quamash development at...
I fixed the tests in the "tests-2019" branch #111 so probably rebase off that branch
the problem is #111 updates the readme and version number, so I'd prefer to get everything in a 0.7.0 branch, then merge and release all at once. So if you...
Primarily performance, but since you're in python YMMV a lot with regards to how much that matters. With quamash you're only running one event loop, and plugging the python functions...