(self)
| 116 | ctx = "spawn" |
| 117 | |
| 118 | def get_context(self): |
| 119 | try: |
| 120 | _check_system_limits() |
| 121 | except NotImplementedError: |
| 122 | self.skipTest("ProcessPoolExecutor unavailable on this system") |
| 123 | return super().get_context() |
| 124 | |
| 125 | def create_event(self): |
| 126 | return self.manager.Event() |
nothing calls this directly
no test coverage detected