Home
last modified time | relevance | path

Searched refs:_default_context (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Lib/multiprocessing/
Dcontext.py224 return _default_context.get_context().Process._Popen(process_obj)
230 self._default_context = context
236 self._actual_context = self._default_context
253 self._actual_context = self._default_context
316 _default_context = DefaultContext(_concrete_contexts['spawn']) variable
318 _default_context = DefaultContext(_concrete_contexts['fork']) variable
336 _default_context = DefaultContext(_concrete_contexts['spawn']) variable
343 _default_context._actual_context = _concrete_contexts[method]
D__init__.py22 __all__ = [x for x in dir(context._default_context) if not x.startswith('_')]
23 globals().update((name, getattr(context._default_context, name)) for name in __all__)
Dsynchronize.py52 ctx = context._default_context.get_context()