(self, fullname)
| 313 | |
| 314 | # Return some information about a module. |
| 315 | def _get_module_info(self, fullname): |
| 316 | path = _get_module_path(self, fullname) |
| 317 | for suffix, isbytecode, ispackage in _zip_searchorder: |
| 318 | fullpath = path + suffix |
| 319 | if fullpath in self._get_files(): |
| 320 | return ispackage |
| 321 | return None |
| 322 | |
| 323 | |
| 324 | # implementation |
no test coverage detected