(infile)
| 30 | # high-level |
| 31 | |
| 32 | def read_parsed(infile): |
| 33 | # XXX Support other formats than TSV? |
| 34 | columns = _get_columns('parsed') |
| 35 | for row in _tables.read_table(infile, columns, sep='\t', fix='-'): |
| 36 | yield _info.ParsedItem.from_row(row, columns) |
| 37 | |
| 38 | |
| 39 | def write_parsed(items, outfile): |
nothing calls this directly
no test coverage detected
searching dependent graphs…