예제 #1
0
 def __init__(self, filename, text, offset, ex):
     DecodeError.__init__(self, ex.entry)
     self._filename = filename
     self._text = text
     self._offset = offset
     self.error = ex
예제 #2
0
 def __init__(self, seq, expected, actual):
     DecodeError.__init__(self, seq)
     self.sequenceof = seq
     self.expected = expected
     self.actual = actual
예제 #3
0
 def __init__(self, entry, actual, comparison, limit):
     DecodeError.__init__(self, entry)
     self._comparision = comparison
     self._expected = limit
     self._actual = actual
예제 #4
0
파일: entry.py 프로젝트: asdf1011/bdec
 def __init__(self, entry, child, name):
     DecodeError.__init__(self, entry)
     self.child = child
     self.name = name
예제 #5
0
파일: field.py 프로젝트: pombredanne/bdec
 def __init__(self, entry, value):
     DecodeError.__init__(self, entry)
     self.value = value
예제 #6
0
파일: solver.py 프로젝트: birdming22/bdec
 def __init__(self, entry, expr, reason):
     DecodeError.__init__(self, entry)
     self.expr = expr
     self.reason = reason
예제 #7
0
파일: sequence.py 프로젝트: asdf1011/bdec
 def __init__(self, entry, loop):
     DecodeError.__init__(self, entry)
     self._loop = loop