(self, fullname)
| 51 | return self |
| 52 | |
| 53 | def load_module(self, fullname): |
| 54 | raise ImportError(""" |
| 55 | Importing %s disabled by IPython, which has |
| 56 | already imported an Incompatible QT Binding: %s |
| 57 | """ % (fullname, loaded_api())) |
| 58 | |
| 59 | ID = ImportDenier() |
| 60 | sys.meta_path.insert(0, ID) |
nothing calls this directly
no test coverage detected