On Mon, 6 Oct 2014 07:11:50 -0400 Donald Stufft <[email protected]> wrote: > > My problem with _overlapped is mostly that it required a compiler. I’m idly > considering what it’d take to give pip some concurrency and one of the > requirements there is that we can’t depend on anything that isn’t in the > standard library of 2.6, 2.7, 3.2+ or can’t be bundled inside of pip and is > pure Python. Most likely this will end up being threads but I really don’t > like threads much and It occurred to me it may be possible to bundle Trollius.
There is a concurrent.futures backport. Using it for concurrency should be quite simple: https://pypi.python.org/pypi/futures/2.2.0 Regards Antoine.
