##// END OF EJS Templates
setdiscovery: use absolute_import
Gregory Szorc -
r25973:fb5664eb default
parent child Browse files
Show More
@@ -40,11 +40,20 b' nodes that will maximize the number of n'
40 40 classified with it (since all ancestors or descendants will be marked as well).
41 41 """
42 42
43 from __future__ import absolute_import
44
43 45 import collections
44 from node import nullid, nullrev
45 from i18n import _
46 46 import random
47 import util, dagutil
47
48 from .i18n import _
49 from .node import (
50 nullid,
51 nullrev,
52 )
53 from . import (
54 dagutil,
55 util,
56 )
48 57
49 58 def _updatesample(dag, nodes, sample, quicksamplesize=0):
50 59 """update an existing sample to match the expected size
General Comments 0
You need to be logged in to leave comments. Login now