# HG changeset patch # User Martin von Zweigbergk # Date 2017-04-03 15:45:24 # Node ID 6bfea18df609af8fc176bb406904096068c2c893 # Parent 0e4f70f63aaade13540f0faffdba19fad297276a manifest: update comment to be about bytearray Looks like a leftover from 2a18e9e6ca43 (py3: use bytearray() instead of array('c', ...) constructions, 2017-03-12). diff --git a/mercurial/manifest.py b/mercurial/manifest.py --- a/mercurial/manifest.py +++ b/mercurial/manifest.py @@ -591,7 +591,7 @@ class manifestdict(object): return self._lm.text() def fastdelta(self, base, changes): - """Given a base manifest text as an array.array and a list of changes + """Given a base manifest text as a bytearray and a list of changes relative to that text, compute a delta that can be used by revlog. """ delta = []