pythonfutures
pythonfutures copied to clipboard
Backport of the concurrent.futures package to Python 2.6 and 2.7
pip install futures Collecting futures Downloading futures-3.0.5.tar.gz (25 kB) Preparing metadata (setup.py) ... error error: subprocess-exited-with-error × python setup.py egg_info did not run successfully. │ exit code: 1 ╰─> [30...
Also updates the docs for thread and process pools. Unfortunately, the ProcessPoolExecutor is vastly differently implemented than upstream Python 3, so I couldn't use stick to the upstream PR as...
Given the version number I assume this is a backport of concurrent.futures from Python 3.2. There have been improvements to the module in later releases of Python 3, and I...
First of all, thanks for that great backport. I am using it for the xfork package to support the 2.7 branch. Unfortunately, there is something strange happening with this futures...
``` What steps will reproduce the problem? 1. In the function submitted to a ProcessPoolExecutor, raise a custom exception class that takes more than one argument to __init__. What is...
I've been chasing this for a year or so (across various versions of Python and futures—this time 2.7.6 and 3.0.3) and finally went through the rigamarole of settings up the...
For #25 there are effectively two problems. (1) the worker process doesn't handle the keyboard interrupt and as such the process pool cannot shutdown properly. c2ae8dc fixes this issue, such...