| 12345678910111213141516 |
- 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"]
|