(self, relroot=fsutil.USE_CWD, **kwargs)
| 629 | return self._parsed |
| 630 | |
| 631 | def fix_filename(self, relroot=fsutil.USE_CWD, **kwargs): |
| 632 | if self.file: |
| 633 | self.file = self.file.fix_filename(relroot, **kwargs) |
| 634 | return self |
| 635 | |
| 636 | def as_rowdata(self, columns=None): |
| 637 | columns, datacolumns, colnames = self._parse_columns(columns) |
nothing calls this directly
no test coverage detected