Esempio n. 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)
Esempio n. 2
0
 def __init__(self, *args, **kwargs):
     BaseParser.__init__(self, *args, **kwargs)
     self.inner = SSVParser(continuation='\\')
Esempio n. 3
0
 def __init__(self, *args, **kwargs):
     self.comment = '#'
     self.continuation = '\\'
     BaseParser.__init__(self, *args, **kwargs)
Esempio n. 4
0
 def __init__(self, *args, **kwargs):
     BaseParser.__init__(self, *args, **kwargs)
     self.inner = SSVParser(continuation='\\')
Esempio n. 5
0
 def __init__(self, *args, **kwargs):
     self.comment = '#'
     self.continuation = '\\'
     BaseParser.__init__(self, *args, **kwargs)
Esempio n. 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)