changeset 2609:81a94da65dca

obsfate: mark successorsetallmarkers public We are about to use it in another module.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Fri, 16 Jun 2017 17:55:55 +0200
parents 4dd548327f89
children ee37ab3de5f7
files hgext3rd/evolve/obshistory.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/hgext3rd/evolve/obshistory.py	Fri Jun 16 17:54:27 2017 +0200
+++ b/hgext3rd/evolve/obshistory.py	Fri Jun 16 17:55:55 2017 +0200
@@ -643,7 +643,7 @@
     _successorsetverb
 ]
 
-def _successorsetallmarkers(successorset, pathscache):
+def successorsetallmarkers(successorset, pathscache):
     """compute all successors of a successorset.
 
     pathscache must contains all successors starting from selected nodes
@@ -676,7 +676,7 @@
     the min date and the max date
     """
     hex = nodemod.hex
-    rawmarkers = _successorsetallmarkers(successorset, pathscache)
+    rawmarkers = successorsetallmarkers(successorset, pathscache)
 
     successorset = [hex(n) for n in successorset]