Don't produce __spec__ until requested
(self)
| 70 | |
| 71 | @property |
| 72 | def __spec__(self): |
| 73 | """Don't produce __spec__ until requested""" |
| 74 | return import_module(self._mirror).__spec__ |
| 75 | |
| 76 | def __dir__(self): |
| 77 | return dir(import_module(self._mirror)) |
nothing calls this directly
no outgoing calls
no test coverage detected