| 317 | Process = SpawnProcess |
| 318 | |
| 319 | class ForkServerContext(BaseContext): |
| 320 | _name = 'forkserver' |
| 321 | Process = ForkServerProcess |
| 322 | def _check_available(self): |
| 323 | if not reduction.HAVE_SEND_HANDLE: |
| 324 | raise ValueError('forkserver start method not available') |
| 325 | |
| 326 | _concrete_contexts = { |
| 327 | 'fork': ForkContext(), |
no outgoing calls
no test coverage detected
searching dependent graphs…