From 106b00c51dff997df7f66db205353e1f0ccf76ea Mon Sep 17 00:00:00 2001 From: Gregory Szorc Date: Sun, 27 Sep 2015 15:31:50 -0700 Subject: [PATCH] revlog: add docstring for checkinlinesize() The name is deceptive: it does more than just "check." Add a docstring to clarify what's going on. --- mercurial/revlog.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mercurial/revlog.py b/mercurial/revlog.py index 259315a0fa..3449de6b62 100644 --- a/mercurial/revlog.py +++ b/mercurial/revlog.py @@ -1125,6 +1125,12 @@ class revlog(object): % (self.indexfile, revornode)) def checkinlinesize(self, tr, fp=None): + """Check if the revlog is too big for inline and convert if so. + + This should be called after revisions are added to the revlog. If the + revlog has grown too large to be an inline revlog, it will convert it + to use multiple index and data files. + """ if not self._inline or (self.start(-2) + self.length(-2)) < _maxinline: return