D7287: simplemerge: disable a pytype error where it's just confused
durin42 (Augie Fackler)
phabricator at mercurial-scm.org
Thu Nov 7 08:35:00 UTC 2019
Closed by commit rHG3b581ad59459: simplemerge: disable a pytype error where it's just confused (authored by durin42).
This revision was automatically updated to reflect the committed changes.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D7287?vs=17657&id=17701
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D7287/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D7287
AFFECTED FILES
mercurial/simplemerge.py
CHANGE DETAILS
diff --git a/mercurial/simplemerge.py b/mercurial/simplemerge.py
--- a/mercurial/simplemerge.py
+++ b/mercurial/simplemerge.py
@@ -291,7 +291,19 @@
if region[0] != b"conflict":
yield region
continue
- issue, z1, z2, a1, a2, b1, b2 = region
+ # pytype thinks this tuple contains only 3 things, but
+ # that's clearly not true because this code successfully
+ # executes. It might be wise to rework merge_regions to be
+ # some kind of attrs type.
+ (
+ issue,
+ z1,
+ z2,
+ a1,
+ a2,
+ b1,
+ b2,
+ ) = region # pytype: disable=bad-unpacking
alen = a2 - a1
blen = b2 - b1
To: durin42, #hg-reviewers, indygreg
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list