Patch for an Issue #982

This commit is contained in:
Miroslav Stampar 2014-12-02 10:23:10 +01:00
parent 7a04595f5e
commit e03aaa7542

View File

@ -19,7 +19,11 @@ try:
except (ImportError, OSError):
pass
else:
_multiprocessing = multiprocessing
try:
if multiprocessing.cpu_count() > 1:
_multiprocessing = multiprocessing
except NotImplementedError:
pass
import gc
import os