Abstract method which should return the value that __file__ is to be set to. Raises ImportError if the module cannot be found.
(self, fullname)
| 162 | |
| 163 | @abc.abstractmethod |
| 164 | def get_filename(self, fullname): |
| 165 | """Abstract method which should return the value that __file__ is to be |
| 166 | set to. |
| 167 | |
| 168 | Raises ImportError if the module cannot be found. |
| 169 | """ |
| 170 | raise ImportError |
| 171 | |
| 172 | def get_code(self, fullname): |
| 173 | """Method to return the code object for fullname. |