(self, fullname)
| 355 | # Given a module name, return the potential file path in the |
| 356 | # archive (without extension). |
| 357 | def _get_module_path(self, fullname): |
| 358 | return self.prefix + fullname.rpartition('.')[2] |
| 359 | |
| 360 | # Does this path represent a directory? |
| 361 | def _is_dir(self, path): |
no test coverage detected