You can also browse the complete source file or the generated documentation.
class ParseError(Exception): class CSVParser(object): def __init__(self, allowComments=True, stripWhitespace=True, fieldSep=',', ## Parse ## def parse(self, line) ## Reset ## def reset(self) ## State Handlers ## def startRecord(self, c) def startField(self, c) def inField(self, c) def quoteInField(self, c) def inQuotedField(self, c) def quoteInQuotedField(self, c) def endQuotedField(self, c) def saveField(self)