Home | History | Annotate | Download | only in tables

Lines Matching refs:current

57   current = None
59 if current is None:
60 current = v
62 if current[1] + 1 == v[0] and current[2] == v[2]:
63 current = (current[0], v[1], v[2])
65 output.append(current)
66 current = v
67 if current is not None:
68 output.append(current)