(self, relroot=fsutil.USE_CWD, **kwargs)
| 309 | return self._analyzed[key] |
| 310 | |
| 311 | def fix_filenames(self, relroot=fsutil.USE_CWD, **kwargs): |
| 312 | if relroot and relroot is not fsutil.USE_CWD: |
| 313 | relroot = os.path.abspath(relroot) |
| 314 | for item in self._analyzed: |
| 315 | item.fix_filename(relroot, fixroot=False, **kwargs) |
| 316 | |
| 317 | def _add_result(self, info, resolved): |
| 318 | analyzed = type(self).build_item(info, resolved) |
no test coverage detected