(self)
| 97 | ctx = "fork" |
| 98 | |
| 99 | def get_context(self): |
| 100 | try: |
| 101 | _check_system_limits() |
| 102 | except NotImplementedError: |
| 103 | self.skipTest("ProcessPoolExecutor unavailable on this system") |
| 104 | if sys.platform == "win32": |
| 105 | self.skipTest("require unix system") |
| 106 | if support.check_sanitizer(thread=True): |
| 107 | self.skipTest("TSAN doesn't support threads after fork") |
| 108 | return super().get_context() |
| 109 | |
| 110 | def create_event(self): |
| 111 | return self.manager.Event() |
nothing calls this directly
no test coverage detected