(items, outfile)
| 37 | |
| 38 | |
| 39 | def write_parsed(items, outfile): |
| 40 | # XXX Support other formats than TSV? |
| 41 | columns = _get_columns('parsed') |
| 42 | rows = (item.as_row(columns) for item in items) |
| 43 | _tables.write_table(outfile, columns, rows, sep='\t', fix='-') |
| 44 | |
| 45 | |
| 46 | def read_decls(infile, fmt=None): |
nothing calls this directly
no test coverage detected
searching dependent graphs…