(self, fullname)
| 368 | |
| 369 | # Return some information about a module. |
| 370 | def _get_module_info(self, fullname): |
| 371 | path = _get_module_path(self, fullname) |
| 372 | for suffix, isbytecode, ispackage in _zip_searchorder: |
| 373 | fullpath = path + suffix |
| 374 | if fullpath in self._files: |
| 375 | return ispackage |
| 376 | return None |
| 377 | |
| 378 | |
| 379 | # implementation |
no test coverage detected