From ded610ede9a2604fc92c6d75005c0678d29fcf9d Mon Sep 17 00:00:00 2001 From: benoitc Date: Mon, 2 May 2016 15:44:38 +0200 Subject: [PATCH] add a note about the requirements of the threads workers under python 2.x fix #1200 --- docs/source/design.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/source/design.rst b/docs/source/design.rst index 12ded84e..f606f43b 100644 --- a/docs/source/design.rst +++ b/docs/source/design.rst @@ -123,6 +123,9 @@ as the application code will be shared among workers but loaded only in the worker processes (unlike when using the preload setting, which loads the code in the master process). +.. note:: Under Python 2.x, uou need to install the 'futures' package to use +this feature. + .. _Greenlets: https://github.com/python-greenlet/greenlet .. _Eventlet: http://eventlet.net .. _Gevent: http://gevent.org