projektAI/venv/Lib/site-packages/joblib/externals/loky/backend/__init__.py

17 lines
398 B
Python
Raw Normal View History

2021-06-06 22:13:05 +02:00
import os
import sys
from .context import get_context
if sys.version_info > (3, 4):
def _make_name():
name = '/loky-%i-%s' % (os.getpid(), next(synchronize.SemLock._rand))
return name
# monkey patch the name creation for multiprocessing
from multiprocessing import synchronize
synchronize.SemLock._make_name = staticmethod(_make_name)
__all__ = ["get_context"]