D7352: index: use `index.has_node` in `histedit.cleanupnode`

marmoute (Pierre-Yves David) phabricator at mercurial-scm.org
Sat Nov 9 03:42:23 EST 2019


Closed by commit rHGe8cd502f0afe: index: use `index.has_node` in `histedit.cleanupnode` (authored by marmoute).
This revision was automatically updated to reflect the committed changes.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D7352?vs=17853&id=17879

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

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

AFFECTED FILES
  hgext/histedit.py

CHANGE DETAILS

diff --git a/hgext/histedit.py b/hgext/histedit.py
--- a/hgext/histedit.py
+++ b/hgext/histedit.py
@@ -2565,8 +2565,8 @@
         repo = repo.unfiltered()
         # Find all nodes that need to be stripped
         # (we use %lr instead of %ln to silently ignore unknown items)
-        nm = repo.changelog.nodemap
-        nodes = sorted(n for n in nodes if n in nm)
+        has_node = repo.changelog.index.has_node
+        nodes = sorted(n for n in nodes if has_node(n))
         roots = [c.node() for c in repo.set(b"roots(%ln)", nodes)]
         if roots:
             backup = not nobackup



To: marmoute, durin42, #hg-reviewers, indygreg
Cc: mercurial-devel


More information about the Mercurial-devel mailing list