# HG changeset patch # User Pierre-Yves David # Date 2014-05-28 17:04:02 # Node ID 3cb96ca90c17ec58b8ee2bec8e71e4fbbe5ce646 # Parent 054fa5176fa7d8c8ef457a8333bc09e1cc10c2d0 bundle2: introduce an ``_initparams`` method The handling of parameters will become much more sophisticated in the coming changesets. So we extract the logic in a function to not pollute the generic logic. diff --git a/mercurial/bundle2.py b/mercurial/bundle2.py --- a/mercurial/bundle2.py +++ b/mercurial/bundle2.py @@ -706,6 +706,11 @@ class unbundlepart(unpackermixin): data = self._fromheader(struct.calcsize(format)) return _unpack(format, data) + def _initparams(self, mandatoryparams, advisoryparams): + """internal function to setup all logic related parameters""" + self.mandatoryparams = mandatoryparams + self.advisoryparams = advisoryparams + def _readheader(self): """read the header and setup the object""" typesize = self._unpackheader(_fparttypesize)[0] @@ -732,8 +737,7 @@ class unbundlepart(unpackermixin): advparams = [] for key, value in advsizes: advparams.append((self._fromheader(key), self._fromheader(value))) - self.mandatoryparams = manparams - self.advisoryparams = advparams + self._initparams(manparams, advparams) ## part payload def payloadchunks(): payloadsize = self._unpack(_fpayloadsize)[0]