diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -14,6 +14,12 @@ # See the License for the specific language governing permissions and # limitations under the License. +# a bug workaround. http://bugs.python.org/issue15881 +try: + import multiprocessing +except ImportError: + pass + import setuptools import os |