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