[Request] [+ ] D11241: pytype: add assertions to explain revlogv2 invariants to Pytype
Alphare (Raphaël Gomès)
phabricator at mercurial-scm.org
Mon Aug 2 16:49:02 UTC 2021
Alphare created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REPOSITORY
rHG Mercurial
BRANCH
stable
REVISION DETAIL
https://phab.mercurial-scm.org/D11241
AFFECTED FILES
mercurial/revlog.py
CHANGE DETAILS
diff --git a/mercurial/revlog.py b/mercurial/revlog.py
--- a/mercurial/revlog.py
+++ b/mercurial/revlog.py
@@ -2116,6 +2116,8 @@
dfh = self._datafp(b"w+")
transaction.add(self._datafile, dsize)
if self._sidedatafile is not None:
+ # revlog-v2 does not inline, help Pytype
+ assert dfh is not None
try:
sdfh = self.opener(self._sidedatafile, mode=b"r+")
dfh.seek(self._docket.sidedata_end, os.SEEK_SET)
@@ -2578,6 +2580,8 @@
assert not sidedata
self._enforceinlinesize(transaction)
if self._docket is not None:
+ # revlog-v2 always has 3 writing handles, help Pytype
+ assert self._writinghandles[2] is not None
self._docket.index_end = self._writinghandles[0].tell()
self._docket.data_end = self._writinghandles[1].tell()
self._docket.sidedata_end = self._writinghandles[2].tell()
To: Alphare, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20210802/952b8fc2/attachment.html>
More information about the Mercurial-patches
mailing list