(decls, outfile, extracolumns=None, *,
relroot=fsutil.USE_CWD,
**kwargs
)
| 92 | |
| 93 | |
| 94 | def write_decls_tsv(decls, outfile, extracolumns=None, *, |
| 95 | relroot=fsutil.USE_CWD, |
| 96 | **kwargs |
| 97 | ): |
| 98 | if relroot and relroot is not fsutil.USE_CWD: |
| 99 | relroot = os.path.abspath(relroot) |
| 100 | decls = (d.fix_filename(relroot, fixroot=False) for d in decls) |
| 101 | # XXX Move the row rendering here. |
| 102 | _write_decls_tsv(decls, outfile, extracolumns, kwargs) |
| 103 | |
| 104 | |
| 105 | def _iter_decls_tsv(infile, extracolumns=None): |
nothing calls this directly
no test coverage detected
searching dependent graphs…