(self, fullname, path=None)
| 45 | self.__forbidden.add(module_name) |
| 46 | |
| 47 | def find_module(self, fullname, path=None): |
| 48 | if path: |
| 49 | return |
| 50 | if fullname in self.__forbidden: |
| 51 | return self |
| 52 | |
| 53 | def load_module(self, fullname): |
| 54 | raise ImportError(""" |
nothing calls this directly
no outgoing calls
no test coverage detected