comparison mercurial/revlogutils/deltas.py @ 51700:7f0cb9ee0534

Backout accidental publication of a large range of revisions I accidentally published 25e7f9dcad0f::bd1483fd7088, this is the inverse.
author Raphaël Gomès <rgomes@octobus.net>
date Tue, 23 Jul 2024 10:02:46 +0200
parents 493034cc3265
children ca7bde5dbafb
comparison
equal deleted inserted replaced
51699:bd1483fd7088 51700: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