Mercurial > public > mercurial-scm > hg-stable
diff mercurial/filelog.py @ 47162:a07d5cb03a85
revlog: rename `indexfile` to `_indexfile`
We want to make the actual location of the indexfile and location more of an
implementation details than what is is currently. In that process, we make the
attribute private.
Differential Revision: https://phab.mercurial-scm.org/D10574
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Mon, 03 May 2021 12:22:16 +0200 |
parents | 8a1a51d31e85 |
children | 8d3c2f9d4af7 |
line wrap: on
line diff
--- a/mercurial/filelog.py Mon May 03 12:22:06 2021 +0200 +++ b/mercurial/filelog.py Mon May 03 12:22:16 2021 +0200 @@ -71,7 +71,7 @@ def lookup(self, node): return storageutil.fileidlookup( - self._revlog, node, self._revlog.indexfile + self._revlog, node, self._revlog._indexfile ) def linkrev(self, rev):