Lines Matching refs:self
22 def __init__(self, l):23 object.__init__(self)24 self.parse(l)25 def parse(self, l):31 self.count = count32 self.remain = remain33 def merge(self, gcl):34 self.count = self.count + gcl.count35 def write(self, of):36 if self.count == 0:40 of.write(self.remain)