D10081: changelog: rename parameters to reflect semantics
joerg.sonnenberger (Joerg Sonnenberger)
phabricator at mercurial-scm.org
Mon Mar 1 15:55:12 UTC 2021
joerg.sonnenberger created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
`read` and `readfiles` can be used with a revision just as well, so
follow the naming convention in revlog to reflect this.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D10081
AFFECTED FILES
mercurial/changelog.py
CHANGE DETAILS
diff --git a/mercurial/changelog.py b/mercurial/changelog.py
--- a/mercurial/changelog.py
+++ b/mercurial/changelog.py
@@ -507,7 +507,7 @@
if not self._delayed:
revlog.revlog._enforceinlinesize(self, tr, fp)
- def read(self, node):
+ def read(self, nodeorrev):
"""Obtain data from a parsed changelog revision.
Returns a 6-tuple of:
@@ -523,7 +523,7 @@
``changelogrevision`` instead, as it is faster for partial object
access.
"""
- d, s = self._revisiondata(node)
+ d, s = self._revisiondata(nodeorrev)
c = changelogrevision(
d, s, self._copiesstorage == b'changeset-sidedata'
)
@@ -536,11 +536,11 @@
text, sidedata, self._copiesstorage == b'changeset-sidedata'
)
- def readfiles(self, node):
+ def readfiles(self, nodeorrev):
"""
short version of read that only returns the files modified by the cset
"""
- text = self.revision(node)
+ text = self.revision(nodeorrev)
if not text:
return []
last = text.index(b"\n\n")
To: joerg.sonnenberger, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list