Example #1
0
 def __init__(self,
              separator=None,
              maxsplit=-1,
              comment='#',
              continuation=None,
              *args,
              **kwargs):
     self.separator = separator
     self.maxsplit = maxsplit
     self.comment = comment
     self.continuation = continuation
     BaseParser.__init__(self, *args, **kwargs)
Example #2
0
 def __init__(self, *args, **kwargs):
     BaseParser.__init__(self, *args, **kwargs)
     self.inner = SSVParser(continuation='\\')
Example #3
0
 def __init__(self, *args, **kwargs):
     self.comment = '#'
     self.continuation = '\\'
     BaseParser.__init__(self, *args, **kwargs)
Example #4
0
 def __init__(self, *args, **kwargs):
     BaseParser.__init__(self, *args, **kwargs)
     self.inner = SSVParser(continuation='\\')
Example #5
0
 def __init__(self, *args, **kwargs):
     self.comment = '#'
     self.continuation = '\\'
     BaseParser.__init__(self, *args, **kwargs)
Example #6
0
 def __init__(self, separator=None, maxsplit=-1, comment='#', continuation=None, *args, **kwargs):
     self.separator = separator
     self.maxsplit = maxsplit
     self.comment = comment
     self.continuation = continuation
     BaseParser.__init__(self, *args, **kwargs)