(self, mod_name)
| 68 | return self |
| 69 | |
| 70 | def load_module(self, mod_name): |
| 71 | raise ImportError(""" |
| 72 | Importing %s disabled by Lantz, which has |
| 73 | already imported an Incompatible QT Binding: %s |
| 74 | """ % (mod_name, loaded_api())) |
| 75 | |
| 76 | ID = ImportDenier() |
| 77 | sys.meta_path.append(ID) |
nothing calls this directly
no test coverage detected