예제 #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)
예제 #2
0
 def __init__(self, *args, **kwargs):
     BaseParser.__init__(self, *args, **kwargs)
     self.inner = SSVParser(continuation='\\')
예제 #3
0
 def __init__(self, *args, **kwargs):
     self.comment = '#'
     self.continuation = '\\'
     BaseParser.__init__(self, *args, **kwargs)
예제 #4
0
 def __init__(self, *args, **kwargs):
     BaseParser.__init__(self, *args, **kwargs)
     self.inner = SSVParser(continuation='\\')
예제 #5
0
파일: shell.py 프로젝트: Eugeny/reconfigure
 def __init__(self, *args, **kwargs):
     self.comment = '#'
     self.continuation = '\\'
     BaseParser.__init__(self, *args, **kwargs)
예제 #6
0
파일: ssv.py 프로젝트: Eugeny/reconfigure
 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)