D6209: branchcache: don't verify closed nodes in iteropen()

2019-04-15 Thread pulkit (Pulkit Goyal)
This revision was automatically updated to reflect the committed changes.
Closed by commit rHG7c9d4cf23adf: branchcache: don't verify closed nodes 
in iteropen() (authored by pulkit, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D6209?vs=14678&id=14752

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

AFFECTED FILES
  mercurial/branchmap.py

CHANGE DETAILS

diff --git a/mercurial/branchmap.py b/mercurial/branchmap.py
--- a/mercurial/branchmap.py
+++ b/mercurial/branchmap.py
@@ -319,7 +319,6 @@
 return self._branchtip(self[branch])[0]
 
 def iteropen(self, nodes):
-self._verifyclosed()
 return (n for n in nodes if n not in self._closednodes)
 
 def branchheads(self, branch, closed=False):



To: pulkit, #hg-reviewers
Cc: mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel


D6209: branchcache: don't verify closed nodes in iteropen()

2019-04-05 Thread pulkit (Pulkit Goyal)
pulkit created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.

REVISION SUMMARY
  We expect that the nodes passed to iteropen() will be verified. We are only
  testing for membership in closed nodes set, so we don't need to verify the 
whole
  closed nodes set.
  
  This will speed up calculating branchheads() when there are lot of closed 
nodes
  related to other branches.

REPOSITORY
  rHG Mercurial

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

AFFECTED FILES
  mercurial/branchmap.py

CHANGE DETAILS

diff --git a/mercurial/branchmap.py b/mercurial/branchmap.py
--- a/mercurial/branchmap.py
+++ b/mercurial/branchmap.py
@@ -319,7 +319,6 @@
 return self._branchtip(self[branch])[0]
 
 def iteropen(self, nodes):
-self._verifyclosed()
 return (n for n in nodes if n not in self._closednodes)
 
 def branchheads(self, branch, closed=False):



To: pulkit, #hg-reviewers
Cc: mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel