D7455: revset: add an assertion to help pytype

mharbison72 (Matt Harbison) phabricator at mercurial-scm.org
Thu Nov 21 08:35:21 EST 2019


Closed by commit rHG6c6d67fc45cb: revset: add an assertion to help pytype (authored by mharbison72).
This revision was automatically updated to reflect the committed changes.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D7455?vs=18244&id=18256

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D7455/new/

REVISION DETAIL
  https://phab.mercurial-scm.org/D7455

AFFECTED FILES
  mercurial/revset.py

CHANGE DETAILS

diff --git a/mercurial/revset.py b/mercurial/revset.py
--- a/mercurial/revset.py
+++ b/mercurial/revset.py
@@ -684,6 +684,8 @@
             mcache[0] = matchmod.match(repo.root, repo.getcwd(), [pat], ctx=c)
         m = mcache[0]
         fname = None
+
+        assert m is not None  # help pytype
         if not m.anypats() and len(m.files()) == 1:
             fname = m.files()[0]
         if fname is not None:



To: mharbison72, #hg-reviewers, indygreg, dlax, pulkit
Cc: mercurial-devel


More information about the Mercurial-devel mailing list