changeset 51696 | 7f0cb9ee0534 |
parent 51686 | 493034cc3265 |
child 51699 | ca7bde5dbafb |
51695:bd1483fd7088 | 51696:7f0cb9ee0534 |
---|---|
426 selected.sort() |
426 selected.sort() |
427 |
427 |
428 # Cut the revs at collected indices |
428 # Cut the revs at collected indices |
429 previdx = 0 |
429 previdx = 0 |
430 for idx in selected: |
430 for idx in selected: |
431 |
|
431 chunk = _trimchunk(revlog, revs, previdx, idx) |
432 chunk = _trimchunk(revlog, revs, previdx, idx) |
432 if chunk: |
433 if chunk: |
433 yield chunk |
434 yield chunk |
434 |
435 |
435 previdx = idx |
436 previdx = idx |