Lines Matching refs:self
25 def __init__(self, file_name, string): argument
33 super(NoLineError, self).__init__()
34 self.file_name = file_name
35 self.string = string
37 def __str__(self): argument
41 .format(self.file_name, self.string))
47 def __init__(self, symbol): argument
54 super(DebugError, self).__init__()
55 self.symbol = symbol
57 def __str__(self): argument
61 .format(self.symbol))