From 15200652eedfbd34bd4a4fa4b50a976dd27378dc Mon Sep 17 00:00:00 2001 From: Ryan Pessa Date: Mon, 4 May 2015 13:16:19 -0500 Subject: [PATCH] Make multiprocessing optional, again --- concurrent/futures/__init__.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/concurrent/futures/__init__.py b/concurrent/futures/__init__.py index 4059308..9bbeb30 100644 --- a/concurrent/futures/__init__.py +++ b/concurrent/futures/__init__.py @@ -20,6 +20,5 @@ import sys try: from concurrent.futures.process import ProcessPoolExecutor except ImportError: - # Jython doesn't have multiprocessing - if not sys.platform.startswith('java'): - raise + # some platforms don't have multiprocessing + pass