get the name of the mirrored module
(self, fullname)
| 24 | self.mirror = mirror |
| 25 | |
| 26 | def _mirror_name(self, fullname): |
| 27 | """get the name of the mirrored module""" |
| 28 | |
| 29 | return self.mirror + fullname[len(self.src):] |
| 30 | |
| 31 | def find_module(self, fullname, path=None): |
| 32 | """Return self if we should be used to import the module.""" |
no outgoing calls
no test coverage detected