(self, fullname)
| 300 | # Given a module name, return the potential file path in the |
| 301 | # archive (without extension). |
| 302 | def _get_module_path(self, fullname): |
| 303 | return self.prefix + fullname.rpartition('.')[2] |
| 304 | |
| 305 | # Does this path represent a directory? |
| 306 | def _is_dir(self, path): |
no test coverage detected