(self, fullname)
| 262 | |
| 263 | # Return some information about a module. |
| 264 | def _get_module_info(self, fullname): |
| 265 | path = _get_module_path(self, fullname) |
| 266 | for suffix, isbytecode, ispackage in _zip_searchorder: |
| 267 | fullpath = path + suffix |
| 268 | if fullpath in self._get_files(): |
| 269 | return ispackage |
| 270 | return None |
| 271 | |
| 272 | |
| 273 | # implementation |
no test coverage detected
searching dependent graphs…