comparison mercurial/bundle2.py @ 46166:c511fef30290

bundle2: drop some outdated comment This commend trace back to a very early bundle2 changeset c7ceae0faf69. And the code moved past this warning over 5 years ago. Differential Revision: https://phab.mercurial-scm.org/D9637
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Sat, 19 Dec 2020 15:56:54 +0100
parents 41d695a08e90
children 3e91d9978bec
comparison
equal deleted inserted replaced
46165:41d695a08e90 46166:c511fef30290
1958 b'treemanifest', 1958 b'treemanifest',
1959 b'targetphase', 1959 b'targetphase',
1960 ), 1960 ),
1961 ) 1961 )
1962 def handlechangegroup(op, inpart): 1962 def handlechangegroup(op, inpart):
1963 """apply a changegroup part on the repo 1963 """apply a changegroup part on the repo"""
1964
1965 This is a very early implementation that will massive rework before being
1966 inflicted to any end-user.
1967 """
1968 from . import localrepo 1964 from . import localrepo
1969 1965
1970 tr = op.gettransaction() 1966 tr = op.gettransaction()
1971 unpackerversion = inpart.params.get(b'version', b'01') 1967 unpackerversion = inpart.params.get(b'version', b'01')
1972 # We should raise an appropriate exception here 1968 # We should raise an appropriate exception here