# HG changeset patch # User Pierre-Yves David # Date 1497628555 -7200 # Node ID 81a94da65dcae7a6fd86d196a687a7ac7596d7f0 # Parent 4dd548327f89d22c4660096a4ba04c32a5189ae4 obsfate: mark successorsetallmarkers public We are about to use it in another module. diff -r 4dd548327f89 -r 81a94da65dca hgext3rd/evolve/obshistory.py --- 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]