equal
deleted
inserted
replaced
311 for i in range(cl.count() - 1, 0, -100): |
311 for i in range(cl.count() - 1, 0, -100): |
312 l = [] |
312 l = [] |
313 for j in range(max(0, i - 100), i): |
313 for j in range(max(0, i - 100), i): |
314 n = cl.node(j) |
314 n = cl.node(j) |
315 changes = cl.read(n) |
315 changes = cl.read(n) |
316 l.insert(0, (n, j, changes)) |
316 l.append((n, j, changes)) |
|
317 l.reverse() |
317 for e in l: |
318 for e in l: |
318 yield e |
319 yield e |
319 |
320 |
320 for n, i, changes in revgen(): |
321 for n, i, changes in revgen(): |
321 miss = 0 |
322 miss = 0 |