(self, filename)
| 112 | |
| 113 | class CSVOutputFormat(KVWriter): |
| 114 | def __init__(self, filename): |
| 115 | self.file = open(filename, "w+t") |
| 116 | self.keys = [] |
| 117 | self.sep = "," |
| 118 | |
| 119 | def writekvs(self, kvs): |
| 120 | # Add our current row to the history |
nothing calls this directly
no outgoing calls
no test coverage detected