(self, types)
| 28 | |
| 29 | class DictCSVParser(CSVParser): |
| 30 | def __init__(self, types): |
| 31 | self.types = types |
| 32 | |
| 33 | def make_record(self, headers, row): |
| 34 | return { name: func(val) for name, func, val in zip(headers, self.types, row) } |
nothing calls this directly
no outgoing calls
no test coverage detected