├── .gitignore ├── .travis.yml ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── concurrent ├── __init__.py └── futures │ ├── __init__.py │ ├── _base.py │ ├── process.py │ └── thread.py ├── crawl.py ├── docs ├── Makefile ├── conf.py ├── index.rst └── make.bat ├── primes.py ├── setup.cfg ├── setup.py ├── test_futures.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/pythonfutures/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/pythonfutures/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/pythonfutures/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/pythonfutures/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/pythonfutures/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/pythonfutures/HEAD/README.rst -------------------------------------------------------------------------------- /concurrent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/pythonfutures/HEAD/concurrent/__init__.py -------------------------------------------------------------------------------- /concurrent/futures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/pythonfutures/HEAD/concurrent/futures/__init__.py -------------------------------------------------------------------------------- /concurrent/futures/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/pythonfutures/HEAD/concurrent/futures/_base.py -------------------------------------------------------------------------------- /concurrent/futures/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/pythonfutures/HEAD/concurrent/futures/process.py -------------------------------------------------------------------------------- /concurrent/futures/thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/pythonfutures/HEAD/concurrent/futures/thread.py -------------------------------------------------------------------------------- /crawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/pythonfutures/HEAD/crawl.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/pythonfutures/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/pythonfutures/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/pythonfutures/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/pythonfutures/HEAD/docs/make.bat -------------------------------------------------------------------------------- /primes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/pythonfutures/HEAD/primes.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/pythonfutures/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/pythonfutures/HEAD/setup.py -------------------------------------------------------------------------------- /test_futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/pythonfutures/HEAD/test_futures.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agronholm/pythonfutures/HEAD/tox.ini --------------------------------------------------------------------------------