Lines Matching defs:Int
32 class Int(co.namedtuple('Int', 'x')):
35 if isinstance(x, Int):
119 return super().__new__(cls, Int(a), Int(b))
141 new_a, new_b = self if self else (Int(0), Int(0))
142 old_a, old_b = other if other else (Int(0), Int(0))
148 new_a, new_b = self if self else (Int(0), Int(0))
149 old_a, old_b = other if other else (Int(0), Int(0))
185 'calls': Int, 'hits': Int,
191 return super().__new__(cls, file, function, int(Int(line)),
192 Int(calls), Int(hits), Frac(funcs), Frac(lines), Frac(branches))