(self, spec)
| 259 | pass |
| 260 | |
| 261 | def create_module(self, spec): |
| 262 | if self.patch_spec(spec.name): |
| 263 | return synchro |
| 264 | |
| 265 | # Let regular module search continue. |
| 266 | return None |
| 267 | |
| 268 | |
| 269 | class SynchroPytestPlugin: |
nothing calls this directly
no test coverage detected