(self, fullname)
| 44 | return self |
| 45 | |
| 46 | def load_module(self, fullname): |
| 47 | raise ImportError( |
| 48 | """ |
| 49 | Importing %s disabled by IPython, which has |
| 50 | already imported an Incompatible QT Binding: %s |
| 51 | """ |
| 52 | % (fullname, loaded_api()) |
| 53 | ) |
| 54 | |
| 55 | |
| 56 | ID = ImportDenier() |
nothing calls this directly
no test coverage detected