Mercurial > public > mercurial-scm > hg-stable
diff mercurial/bundle2.py @ 52899:b8da7eed1657
pycompat: backed out changeset e02c36478284
We also need to back this out as `util.sortdict` no longer support the `[K,V]`
notation.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Sat, 15 Feb 2025 15:20:33 +0100 |
parents | e02c36478284 |
children | f863fc99bef9 |
line wrap: on
line diff
--- a/mercurial/bundle2.py Sat Feb 15 14:11:43 2025 +0100 +++ b/mercurial/bundle2.py Sat Feb 15 15:20:33 2025 +0100 @@ -869,9 +869,7 @@ params = self._processallparams(params) return params - def _processallparams( - self, paramsblock: bytes - ) -> util.sortdict[bytes, bytes]: + def _processallparams(self, paramsblock): """ """ params = util.sortdict() for p in paramsblock.split(b' '):