Mercurial > public > mercurial-scm > hg
comparison mercurial/bundle2.py @ 47128:bea4717415c0
merge with stable
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Fri, 07 May 2021 22:06:25 -0400 |
parents | 1680c94741f8 f38bf44e077f |
children | 19d4802cb304 |
comparison
equal
deleted
inserted
replaced
47127:5ffc6c18fb96 | 47128:bea4717415c0 |
---|---|
826 params = self._readexact(paramssize) | 826 params = self._readexact(paramssize) |
827 params = self._processallparams(params) | 827 params = self._processallparams(params) |
828 return params | 828 return params |
829 | 829 |
830 def _processallparams(self, paramsblock): | 830 def _processallparams(self, paramsblock): |
831 """""" | 831 """ """ |
832 params = util.sortdict() | 832 params = util.sortdict() |
833 for p in paramsblock.split(b' '): | 833 for p in paramsblock.split(b' '): |
834 p = p.split(b'=', 1) | 834 p = p.split(b'=', 1) |
835 p = [urlreq.unquote(i) for i in p] | 835 p = [urlreq.unquote(i) for i in p] |
836 if len(p) < 2: | 836 if len(p) < 2: |