(self, index)
| 12 | return len(self.column_data[0]) |
| 13 | |
| 14 | def __getitem__(self, index): |
| 15 | return dict(zip(self.column_names, |
| 16 | (col[index] for col in self.column_data))) |
| 17 | |
| 18 | |
| 19 | def read_csv_as_columns(filename, types): |
nothing calls this directly
no outgoing calls
no test coverage detected