comparison mercurial/changegroup.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
405 break 405 break
406 noentries = False 406 noentries = False
407 yield chunkheader(len(chunk)) 407 yield chunkheader(len(chunk))
408 pos = 0 408 pos = 0
409 while pos < len(chunk): 409 while pos < len(chunk):
410 next = pos + 2**20 410 next = pos + 2 ** 20
411 yield chunk[pos:next] 411 yield chunk[pos:next]
412 pos = next 412 pos = next
413 yield closechunk() 413 yield closechunk()
414 414
415 def _unpackmanifests( 415 def _unpackmanifests(