(self, fullname)
| 249 | |
| 250 | class SynchroModuleLoader(importlib.abc.Loader): |
| 251 | def patch_spec(self, fullname): |
| 252 | parts = fullname.split(".") |
| 253 | if ("pymongo" in parts or "gridfs" in parts) and "asynchronous" not in parts: |
| 254 | return True |
| 255 | |
| 256 | return False |
| 257 | |
| 258 | def exec_module(self, module): |
| 259 | pass |
no outgoing calls
no test coverage detected