()
| 42 | |
| 43 | |
| 44 | def _process_context() -> multiprocessing.context.BaseContext: |
| 45 | if hasattr(os, "fork"): |
| 46 | return multiprocessing.get_context("forkserver") |
| 47 | return multiprocessing.get_context("spawn") |
| 48 | |
| 49 | |
| 50 | def _apply_change_set_to_file( |
no outgoing calls
no test coverage detected