(self, relroot=fsutil.USE_CWD, **kwargs)
| 176 | return self.filename |
| 177 | |
| 178 | def fix_filename(self, relroot=fsutil.USE_CWD, **kwargs): |
| 179 | filename = _fix_filename(self.filename, relroot, **kwargs) |
| 180 | if filename == self.filename: |
| 181 | return self |
| 182 | return self._replace(filename=filename) |
| 183 | |
| 184 | |
| 185 | class SourceLine(namedtuple('Line', 'file kind data conditions')): |
nothing calls this directly
no test coverage detected