(self, fullname)
| 249 | # Given a module name, return the potential file path in the |
| 250 | # archive (without extension). |
| 251 | def _get_module_path(self, fullname): |
| 252 | return self.prefix + fullname.rpartition('.')[2] |
| 253 | |
| 254 | # Does this path represent a directory? |
| 255 | def _is_dir(self, path): |
no test coverage detected
searching dependent graphs…