from a list of columns, returns a list of rows.
(cols)
| 30 | return list(zip(*rows)) |
| 31 | |
| 32 | def rows_from_columns(cols): |
| 33 | """from a list of columns, returns a list of rows.""" |
| 34 | return list(zip(*cols)) |
| 35 | |
| 36 | def read_terms(prop_desc, filename): |
| 37 | """Reads the crosswalk of one of the mappings, checks its integrity, |